.inbox-container-9012 {
  display: flex;
  width: 100%;
}

.sidebar-9012 {
  width: 30%;
  background-color: #f8f9fa;
  border-right: 1px solid #ddd;
  overflow-y: scroll;
  padding: 20px;
  height: 600px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.sidebar-9012::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.message-list-9012 {
  list-style: none;
}

.message-item-9012 {
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: background-color 0.2s;
  border: 1px solid #e2e2e2;
}

.message-item-9012:hover {
  background-color: #e9ecef;
}

.message-sender-9012 {
  font-weight: bold;
  color: #343a40;
  font-size: 19px;
}

.message-subject-9012 {
  font-size: 15px;
  color: #495057;
  margin: 5px 0;
}

.message-preview-9012 {
  font-size: 14px;
  color: #6c757d;
}

.has-attachment-9012::after {
  content: "📎";
  float: right;
  font-size: 16px;
  color: #007bff;
}

.message-content-9012 {
  width: 70%;
  padding: 30px;
  overflow-y: auto;
}

.message-full-9012 h2 {
  margin-bottom: 15px;
  color: black;
}

.message-full-9012 p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.compose-btn-9012 {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: black;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.compose-btn-9012:hover {
  background-color: rgba(0, 0, 0, 0.76);
}

/* Responsive */
@media (max-width: 768px) {
  body,
  .inbox-container-9012 {
    flex-direction: column-reverse;
  }
  .sidebar-9012,
  .message-content-9012 {
    width: 100%;
    box-sizing: border-box !important;
    height: 407px !important;
    position: relative;
    bottom: 20px;
  }
}

.compose-msg-wrapper {
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.w50 {
  width: 50%;
}

.ql-toolbar.ql-snow {
  width: 100%;
}

.drop-area-9012 {
  border: 2px dashed #ccc;
  background-color: white;
  padding: 30px;
  text-align: center;
  color: #6c757d;
  cursor: pointer;
  margin-bottom: 15px;
  border-radius: 8px;
  transition: background 0.2s;
  width: 46%;
  margin-top: 20px;
}

.browse-link-9012 {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.file-input-9012 {
  display: none;
}

.file-list-9012 {
  font-size: 14px;
  margin-top: 10px;
  color: #343a40;
}