
.second-app{
  max-width: 1050px;
  margin: auto;
}
.second-app > h1 {
  text-align: center;
  color: #5a5a5a;
  margin: 60px 0px;
}

.second-validator {
  width: 80%;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
}

.second-card {
  width: 90%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
}

/* .second-card .avatar-section {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
} */
.second-card .avatar-section img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.second-card .avatar-section h3 {
  color: rgb(70, 70, 70);
  font-size: 16px;
}
.second-card .avatar-section p {
  color: rgb(112, 112, 112);
  font-size: 16px;
}

.second-card .second-main-image {
  max-width: 100%;
  margin: auto;
  display: block;
  max-height: 250px;
  border-radius: 15px;
}

.second-card .card-details {
  margin: 10px;
}
.second-card .card-details h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #3a3a3a;
}
.second-card .card-details p {
  font-size: 16px;
  color: rgb(128, 128, 128);
}

/* ///////////////////////////////////////// */

/* bottom Section */
.secondBottomSection {
  margin-top: 30px;
  padding: 6px;
  display: flex;
  justify-content: space-between;
}

.secondBottomSection .iconSection {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 13px;
  color: #5a5a5a;
}
.iconSection svg {
  width: 20px;
}

.iconSection.comment:hover {
  transition: 0.3s;
  color: #64b4ff;
}
.iconSection.repost:hover {
  transition: 0.3s;
  color: rgb(103, 255, 103);
}
.iconSection.like:hover {
  transition: 0.3s;
  color: #ff7da8;
}
.iconSection.view:hover,
.iconSection.share:hover {
  transition: 0.3s;
  color: #64b4ff;
}



.text-area-main-div {
  max-width: 500px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 20px;
}
.text-area-main-div > h3 {
  text-align: center;
  margin: 30px 0px;
  color: #5a5a5a;
}

.textarea-div {
  width: 100%;
  margin: auto;
  border-radius: 15px;
  border: none;
}

.textArea:focus {
  outline: none;
}

.textArea {
  width: 95%;
  margin: auto;
  min-height: 250px;
  border: none;
  border-radius: 5px;
  resize: none;
  font-size: 15px;
}

.output-div {
  word-wrap: break-word;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.clipboardDiv {
  display: flex;
  align-items: center;
}
.clipboardDiv svg {
  width: 15px;
}

.button-container button {
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-size: 12px;
}

.button {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px 5px;
}

@media screen and (max-width: 868px) {
  .second-validator {
    flex-direction: column;
  }
  .text-area-main-div {
    margin: auto;
  }
}
