.unansweredcontainer {
  display: block;
}

.unansweredcontainer .breadcrumb {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.unansweredcontainer .breadcrumb a {
  text-decoration: none;
  font-size: 14px;
  color: #0678b1;
}

.unansweredcontainer .breadcrumb span {
  color: #000;
  font-size: 14px;
}

.unansweredcontainer .unansweredtitle {
  background: #fff;
  padding: 15px;
  text-align: center;
}

.unansweredcontainer .unansweredtitle h1 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

.unansweredcontainer .unansweredtitle p {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin-top: 10px;
}

.unansweredcontainer .unansweredcontent {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.unansweredcontainer .unansweredcontent .unanswereddetail {
  background: #fff;
  padding: 15px;
}

.unansweredcontainer .unansweredcontent .unanswereddetail .unansweredcategory {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  a {
  color: #0678b1;
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2 {
  position: relative;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2
  i {
  font-size: 20px;
  color: #0678b1;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2
  .unanswereddrop {
  position: absolute;
  background: #fff;
  right: 0;
  width: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  top: 30px;
  max-height: 0;
  overflow: hidden;
  z-index: 9;
  transition: 0.5s;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2
  .unanswereddrop.show {
  max-height: 500px;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2
  .unanswereddrop
  a {
  display: flex;
  align-items: center;
  padding: 2px 10px;
  gap: 4px;
  line-height: 32px;
  font-size: 15px;
  font-weight: 400;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredcategory
  h2
  .unanswereddrop
  a
  i {
  font-size: 14px;
}

.unansweredcontainer .unansweredcontent .unanswereddetail .unansweredquestion {
  padding: 10px 0;
  display: block;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredquestion
  a {
  font-size: 21px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.unansweredcontainer .unansweredcontent .unanswereddetail .unanswereduser {
  display: block;
}

.unansweredcontainer .unansweredcontent .unanswereddetail .unanswereduser h2 {
  display: flex;
  gap: 5px;
  align-items: center;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unanswereduser
  h2
  img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unanswereduser
  h2
  span {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unanswereduser
  h2
  strong {
  font-size: 14px;
  color: #0678b1;
  font-weight: 400;
}

.unansweredcontainer .unansweredcontent .unanswereddetail .unansweredbutton {
  display: block;
  padding: 10px 0;
  margin-top: 20px;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredbutton
  button {
  border: solid 1px #0678b1;
  background: #0678b1;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 2px;
  text-transform: capitalize;
}

.unansweredcontainer
  .unansweredcontent
  .unanswereddetail
  .unansweredbutton
  button
  img {
  width: 16px;
  height: 16px;
}

.unansweredmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.unansweredmodalcontent {
  background: #fff;
  width: 70%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  max-height: 80vh;
}

.unansweredpagewrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.unansweredpage {
  border: 1px solid #ccc;
  padding: 20px;
  background: #f9f9f9;
  position: relative;
  page-break-before: always;
}

.unansweredpagecontent {
  margin-bottom: 10px;
}

.unansweredpagefooter {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
  color: #666;
}

.unansweredbuttoncontainer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.unansweredbuttoncontainer button {
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.unansweredbuttoncontainer button:hover {
  background: #0056b3;
}

.unansweredbuttoncontainer button:last-child {
  background: #6c757d;
}
