:root {
  --cn-navy: #0A2D64;
  --cn-teal: #1CA7A3;
  --cn-text: #24364f;
  --cn-muted: #6b7f99;
  --cn-border: rgba(10, 45, 100, 0.10);
  --cn-border-strong: rgba(10, 45, 100, 0.16);
  --cn-bg-soft: #f7fbff;
  --cn-danger: #c62828;
  --cn-danger-soft: rgba(198, 40, 40, 0.08);
}

/* -------------------------------------------------------------------------------------------------
   Base
------------------------------------------------------------------------------------------------- */
input::placeholder,
textarea::placeholder {
  color: rgba(61, 60, 60, 0.72);
}

.hidden {
  display: none !important;
}

@keyframes pop {
  0% { transform: scale(0.7); }
  100% { transform: scale(1); }
}

@keyframes highlightFade {
  0% { background-color: rgba(28, 167, 163, 0.35); }
  100% { background-color: transparent; }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* -------------------------------------------------------------------------------------------------
   Top Bar
------------------------------------------------------------------------------------------------- */
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-community-actions {
  display: flex;
  gap: 2rem;
  margin-right: 5rem;
  width: fit-content;
}

.search-container {
  position: relative;
  width: 400px;
}

.search-container input {
  width: 100%;
  padding: 0.7rem 3.2rem 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--cn-border-strong);
  color: var(--cn-navy);
  background: #fff;
}

.search-container input:focus {
  outline: none;
  border-color: var(--cn-teal);
  box-shadow: 0 0 0 4px rgba(28, 167, 163, 0.10);
}

.clear-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  color: #aaa;
  cursor: pointer;
  display: none;
}

.clear-btn:hover {
  background: none;
  box-shadow: none;
  color: #555;
  transform: translateY(-50%);
}

.fa-plus {
  color: #fff;
  font-size: 0.95rem;
  margin-right: 0.5rem;
}

.fa-bell {
  color: var(--cn-navy);
}

.fa-bell:hover {
  opacity: 0.75;
  cursor: pointer;
}

.notification-wrapper {
  position: relative;
  display: inline-block;
  align-self: center;
}

.notification-btn {
  all: unset;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-btn:hover {
  background: none;
}

.feed-notification-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--cn-navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.2s ease-out;
}

.notification-dropdown {
  position: absolute;
  top: 115%;
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--cn-border);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(10, 45, 100, 0.14);
  z-index: 1000;
}

.notification-dropdown-header {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(10, 45, 100, 0.08);
}

.notification-dropdown-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--cn-navy);
}

.notification-list {
  display: flex;
  flex-direction: column;
}

.notification-item {
  display: block;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(10, 45, 100, 0.05);
}

.notification-item:hover {
  background: #f8fbff;
  color: #333;
}

.notification-item.unread {
  background: rgba(28, 167, 163, 0.08);
}

.notification-text {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--cn-text);
}

.notification-time {
  font-size: 0.8rem;
  color: #777;
}

.notification-empty {
  padding: 1rem;
  color: #777;
  text-align: center;
}

.notification-post,
.notification-actor {
  font-weight: 700;
  color: var(--cn-navy);
}

.create-post-btn {
  background-color: var(--cn-navy);
  color: #fff;
  padding: 0.58rem 1rem;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.create-post-btn:hover {
  transform: translateY(-2px);
}

#mark-all-as-read-btn {
  background: none;
  color: var(--cn-teal);
  padding: 0;
  margin-top: 1rem;
}

.mobile-nurse-station-topbar,
.mobile-topbar-row {
  display: none;
}

.no-results-container {
  color: #333;
  text-align: center;
}

.no-results-container::after {
  content: "";
  display: block;
  border-bottom: 0.2rem solid var(--cn-navy);
  width: 10rem;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------------------------------
   Main Feed
------------------------------------------------------------------------------------------------- */
.main-feed-wrapper {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  padding: 1.5rem 2rem 2.5rem;
}

.feed-sort-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.feed-sort-btn {
  all: unset;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cn-muted);
}

.feed-sort-btn:hover {
  background: none;
  transform: none;
}

.feed-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feed-post-card {
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 20px;
  overflow: visible;
  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.15s ease;
  position: relative;
}

.feed-post-card:hover {
  box-shadow: 0 12px 30px rgba(10, 45, 100, 0.08);
  transform: translateY(-1px);
  border-color: rgba(10, 45, 100, 0.18);
}

.feed-post-card.highlight {
  animation: highlightFade 2s ease;
  background-color: rgba(28, 167, 163, 0.15);
}

.feed-post-card-link {
  display: flex;
  gap: 1.2rem;
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  color: inherit;
}

.feed-post-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cn-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.feed-post-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.feed-post-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.feed-post-title-meta {
  min-width: 0;
  flex: 1;
}

.feed-post-title {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--cn-navy);
}

.feed-post-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--cn-muted);
  flex-wrap: wrap;
}

.feed-post-author {
  font-weight: 700;
  color: var(--cn-navy);
}

.feed-post-dot {
  color: #999;
}

.feed-post-time {
  color: #777;
}

.feed-post-tag {
  flex-shrink: 0;
  min-width: 140px;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 0.15rem;
  margin-right: 2rem;
}
.feed-post-preview {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cn-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feed-post-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: auto;
}

.feed-post-comments {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--cn-navy);
}

.feed-post-comments i {
  color: var(--cn-muted);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------------------------------
   Post Actions
------------------------------------------------------------------------------------------------- */
.post-actions-container {
  position: absolute;
  right: 15px;
  top: 24px;
}

.post-actions-container button {
  background: none;
  transform: none;
  padding: 0.2rem;
  margin-left: 1rem;
}

.post-actions-container i {
  color: var(--cn-navy);
}

.action-items-dropdown {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem 1.4rem;
  flex-wrap: wrap;
}

.action-item,
.edit-post-btn {
  background: none;
  transform: none;
  color: #333;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  text-decoration: none;
}

.action-item:hover,
.edit-post-btn:hover {
  background-color: #f5f8fc;
}

.action-item i {
  color: var(--cn-teal);
  font-size: 1rem;
}

.edit-post-btn {
  font-weight: 600;
}

.post-owner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.post-owner-action-btn:hover {
  color: var(--cn-teal);
}

/* -------------------------------------------------------------------------------------------------
   Reporting Forms
------------------------------------------------------------------------------------------------- */
.report-reason-input-container {
  margin: 0.9rem 1.4rem 1.4rem;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--cn-border);
  border-radius: 16px;
  background: var(--cn-bg-soft);
}

.report-reason-dropdown,
.reason-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--cn-border-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--cn-navy);
  font: inherit;
}

.report-reason-dropdown {
  min-height: 48px;
  padding: 0.85rem 0.95rem;
}

.reason-input {
  min-height: 120px;
  padding: 0.95rem 1rem;
  line-height: 1.6;
  resize: vertical;
}

.report-reason-dropdown:focus,
.reason-input:focus {
  outline: none;
  border-color: var(--cn-teal);
  box-shadow: 0 0 0 4px rgba(28, 167, 163, 0.10);
}

.reason-submit-btn {
  align-self: flex-end;
  min-height: 46px;
  min-width: 110px;
  border: none;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  background: var(--cn-navy);
  color: #fff;
  font-weight: 700;
}

/* -------------------------------------------------------------------------------------------------
   Comments / Replies / Replying Areas
   Covers common selector names so your current markup is more likely to inherit the styles.
------------------------------------------------------------------------------------------------- */
.comment-form,
.reply-form,
.comment-reply-form,
.nested-reply-form,
.reply-box,
.comment-box,
.reply-editor,
.comment-editor {
  width: 100%;
  margin-top: 0.9rem;
}

.comment-form textarea,
.reply-form textarea,
.comment-reply-form textarea,
.nested-reply-form textarea,
.comment-input,
.reply-input,
.reply-box textarea,
.comment-box textarea,
.reply-editor textarea,
.comment-editor textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid var(--cn-border-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--cn-navy);
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  resize: vertical;
  box-sizing: border-box;
}

.comment-form textarea:focus,
.reply-form textarea:focus,
.comment-reply-form textarea:focus,
.nested-reply-form textarea:focus,
.comment-input:focus,
.reply-input:focus,
.reply-box textarea:focus,
.comment-box textarea:focus,
.reply-editor textarea:focus,
.comment-editor textarea:focus {
  outline: none;
  border-color: var(--cn-teal);
  box-shadow: 0 0 0 4px rgba(28, 167, 163, 0.10);
}

.comment-form-actions,
.reply-form-actions,
.comment-reply-actions,
.nested-reply-form-actions,
.reply-actions,
.comment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.comment-form button,
.reply-form button,
.comment-reply-form button,
.nested-reply-form button,
.reply-submit-btn,
.comment-submit-btn {
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: none;
  border-radius: 12px;
  background: var(--cn-navy);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.comment-form button:hover,
.reply-form button:hover,
.comment-reply-form button:hover,
.nested-reply-form button:hover,
.reply-submit-btn:hover,
.comment-submit-btn:hover,
.reason-submit-btn:hover {
  background: #082654;
}

/* Common nested thread containers */
.comment-replies,
.nested-replies,
.reply-thread,
.comment-thread-children,
.reply-children {
  margin-top: 0.8rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(28, 167, 163, 0.25);
}

/* -------------------------------------------------------------------------------------------------
   Delete Modal
------------------------------------------------------------------------------------------------- */
.delete-post-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 45, 100, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.delete-post-modal-overlay.hidden {
  display: none;
}

.delete-post-modal {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border: 1px solid var(--cn-border);
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: 0 24px 60px rgba(10, 45, 100, 0.18);
  animation: modalFadeIn 0.18s ease;
}

.delete-post-modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cn-navy);
  margin: 0 0 0.55rem;
}

.delete-post-modal-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #556987;
  margin: 0 0 1.1rem;
}

.delete-post-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.delete-post-cancel-btn,
.delete-post-confirm-btn {
  min-width: 104px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.delete-post-cancel-btn {
  background: #eef3f8;
  color: var(--cn-navy);
  border: 1px solid var(--cn-border);
}

.delete-post-confirm-btn {
  background: var(--cn-navy);
  color: #fff;
  border: 1px solid var(--cn-navy);
}

.delete-post-confirm-btn:disabled,
.delete-post-cancel-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.mark-all-as-read-btn {
  background: none;
  color: var(--cn-teal);
  padding: 0;
  margin-top: 1rem;
}

/* -------------------------------------------------------------------------------------------------
   Desktop Medium
------------------------------------------------------------------------------------------------- */
@media (min-width: 1025px) and (max-width: 1400px) {
  .user-community-actions {
    margin-right: 3rem;
  }
}

/* -------------------------------------------------------------------------------------------------
   Tablet and Down
------------------------------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .main-view-container {
    margin-left: 0;
    margin-top: 0;
    gap: 2rem;
  }

  .left-sidebar,
  .top-bar-container {
    display: none;
  }

  .mobile-nurse-station-topbar {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    padding: 0.75rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(10, 45, 100, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .mobile-nurse-station-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nurse-station-mobile-menu-btn {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    flex-shrink: 0;
  }

  .nurse-station-mobile-menu-btn:hover {
    background: none;
    transform: none;
  }

  .nurse-station-mobile-menu-btn .fa-bars {
    color: var(--cn-navy);
    font-size: 1.15rem;
  }

  .mobile-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cn-navy);
    flex: 1;
    text-align: left;
    min-width: 0;
  }

  .mobile-nurse-station-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
  }

  .mobile-search-row {
    width: 100%;
  }

  .mobile-search-container,
  .search-container {
    width: 100%;
  }

  .mobile-search-container input,
  .search-container input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 3rem 0.8rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
  }

  .mobile-search-container input::placeholder,
  .search-container input::placeholder {
    padding-left: 0;
    text-align: left;
  }

  .mobile-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-cta-row a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 10px;
    background-color: var(--cn-navy);
    flex-shrink: 0;
  }

  .mobile-cta-row .fa-plus {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
  }

  .notification-dropdown {
    right: 0;
    width: min(92vw, 320px);
    max-height: 360px;
  }

  .main-feed-wrapper {
    max-width: 100%;
    padding: 1.25rem 1.25rem 2rem;
  }

  .feed-post-card-link {
    padding: 1.25rem;
  }

  .feed-post-title {
    font-size: 1.3rem;
    padding-right: 2rem;
  }

  .feed-post-preview {
    font-size: 1rem;
  }

  .feed-post-tag {
    min-width: 125px;
    font-size: 0.85rem;
  }
}

/* -------------------------------------------------------------------------------------------------
   Phone
------------------------------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .mobile-nurse-station-topbar {
    padding: 0.7rem 0.85rem 0.9rem;
    gap: 0.7rem;
  }

  .mobile-nurse-station-topbar-row {
    gap: 0.6rem;
  }

  .mobile-brand {
    font-size: 1rem;
  }

  .mobile-nurse-station-topbar-actions {
    gap: 0.75rem;
  }

  .mobile-search-container input,
  .search-container input {
    padding: 0.75rem 2.8rem 0.75rem 0.95rem;
    font-size: 0.92rem;
  }

  .mobile-cta-row a {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .mobile-cta-row .fa-plus {
    font-size: 0.85rem;
  }

  .notification-dropdown {
    width: min(94vw, 320px);
  }

  .main-feed-wrapper {
    padding: 1rem 0.85rem calc(1.8rem + env(safe-area-inset-bottom));
  }

  .feed-sort-row {
    margin-bottom: 1rem;
  }

  .feed-sort-btn {
    font-size: 0.95rem;
  }

  .feed-post-list {
    gap: 1rem;
  }

  .feed-post-card {
    border-radius: 18px;
  }

  .feed-post-card-link {
    gap: 0.85rem;
    padding: 1rem;
    align-items: flex-start;
  }

  .feed-post-avatar {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .feed-post-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .feed-post-title {
    font-size: 1.08rem;
    line-height: 1.3;
  }

  .feed-post-meta {
    font-size: 0.8rem;
  }

  .feed-post-tag {
    min-width: unset;
    padding: 0.34rem 0.75rem;
    font-size: 0.8rem;
    margin-right: 0;
  }

  .feed-post-preview {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.9rem;
    -webkit-line-clamp: 3;
  }

  .feed-post-footer {
    justify-content: flex-start;
  }

  .feed-post-comments {
    font-size: 0.85rem;
  }

  .action-items-dropdown {
    margin: 0.2rem 1rem 1rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .action-items-dropdown button:hover {
    background: none;
  }

  .action-item,
  .edit-post-btn {
    padding: 0.65rem 0.75rem;
  }

  /* Reporting: larger touch area and more room to type */
  .report-reason-input-container {
    margin: 0.9rem 1rem 1rem;
    padding: 1rem;
    border-radius: 18px;
    gap: 0.85rem;
  }

  .report-reason-dropdown {
    min-height: 52px;
    padding: 0.95rem 1rem;
    font-size: 16px;
  }

  .reason-input {
    min-height: 145px;
    padding: 1rem;
    font-size: 16px;
  }

  .reason-submit-btn {
    width: 100%;
    min-height: 50px;
    margin: 0;
  }

  /* Comments / Replies: much better for nested typing */
  .comment-form textarea,
  .reply-form textarea,
  .comment-reply-form textarea,
  .nested-reply-form textarea,
  .comment-input,
  .reply-input,
  .reply-box textarea,
  .comment-box textarea,
  .reply-editor textarea,
  .comment-editor textarea {
    min-height: 140px;
    padding: 1rem;
    border-radius: 18px;
  }

  .comment-form-actions,
  .reply-form-actions,
  .comment-reply-actions,
  .nested-reply-form-actions,
  .reply-actions,
  .comment-actions {
    margin-top: 0.8rem;
  }

  .comment-form button,
  .reply-form button,
  .comment-reply-form button,
  .nested-reply-form button,
  .reply-submit-btn,
  .comment-submit-btn {
    width: 100%;
    min-height: 50px;
  }

  /* Reduce squeeze in nested threads */
  .comment-replies,
  .nested-replies,
  .reply-thread,
  .comment-thread-children,
  .reply-children {
    margin-left: 0.7rem;
    padding-left: 0.7rem;
  }

  .delete-post-modal {
    border-radius: 20px;
    padding: 1.2rem;
  }

  .delete-post-modal-actions {
    flex-direction: column-reverse;
  }

  .delete-post-cancel-btn,
  .delete-post-confirm-btn {
    width: 100%;
  }
}

/* -------------------------------------------------------------------------------------------------
   Small Phone
------------------------------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .mobile-nurse-station-topbar {
    padding: 0.65rem 0.75rem 0.85rem;
  }

  .mobile-brand {
    font-size: 0.95rem;
  }

  .nurse-station-mobile-menu-btn .fa-bars {
    font-size: 1.05rem;
  }

  .mobile-search-container input,
  .search-container input {
    padding: 0.72rem 2.65rem 0.72rem 0.9rem;
    font-size: 0.9rem;
  }

  .clear-btn {
    padding: 0.3rem
  }

  .mobile-cta-row a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .mobile-cta-row .fa-plus {
    font-size: 0.82rem;
  }

  .mobile-nurse-station-topbar-actions {
    gap: 0.65rem;
  }

  .main-feed-wrapper {
    padding: 1rem 0.75rem calc(1.3rem + env(safe-area-inset-bottom));
  }

  .feed-post-card-link {
    padding: 0.92rem;
    gap: 0.75rem;
  }

  .feed-post-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .feed-post-title {
    font-size: 1rem;
  }

  .feed-post-preview {
    font-size: 0.92rem;
  }

  .feed-post-comments {
    font-size: 0.8rem;
  }

  .report-reason-input-container {
    margin: 0.85rem 0.85rem 1rem;
    padding: 0.95rem;
  }

  .reason-input {
    min-height: 150px;
  }
}

/* -------------------------------------------------------------------------------------------------
   Very Small Phone
------------------------------------------------------------------------------------------------- */
@media (max-width: 390px) {
  .mobile-brand {
    font-size: 0.9rem;
  }

  .mobile-nurse-station-topbar-actions {
    gap: 0.55rem;
  }

  .notification-dropdown {
    width: min(96vw, 300px);
  }
}