@import url("../fonts/stylesheet.css");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
.input-group input[type=text],
.input-group input[type=email],
.input-group input[type=password],
.input-group input[type=date],
.input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.input-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  resize: vertical;
  outline: none;
}
.input-group textarea:focus {
  border-color: #09204b;
}
.input-group textarea::-moz-placeholder {
  color: #bbb;
}
.input-group textarea::placeholder {
  color: #bbb;
}
.input-group .file-upload {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-group .file-upload-content {
  position: relative;
  width: 100%;
  height: 250px;
  padding: 20px;
  border: 1px solid #e1e2e9;
  background: #f4f5fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.input-group .file-upload-content span {
  font-weight: 600;
  color: #09204b;
  text-decoration: underline;
}
.input-group .file-upload-content p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.input-group .uploaded-file {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.input-group .uploaded-file-item {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f4f5fa;
  padding: 10px;
  border-radius: 10px;
}
.input-group .uploaded-file-item .remove-file {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.input-group .uploaded-file-item .remove-file:hover {
  background: #a93226;
}
.input-group input[type=file] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.helper-text {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.page-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-suffix {
  position: relative;
}
.input-suffix input {
  padding-right: 40px;
}
.input-suffix .suffix-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 100%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-suffix .suffix-icon svg {
  stroke: #a3a3a3;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

.button-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #09204b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
}
.button-solid:hover {
  background: #0d2d66;
}
.button-solid svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.button-solid.blue-primary {
  background: #09204b;
  color: #fff;
}

.button-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #09204b;
  color: #09204b;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  background: transparent;
}
.button-outline svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.button-outline.blue-primary {
  border-color: #09204b;
  color: #09204b;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: #f5f5f5;
}

/* ===== Main Content ===== */
.main-content {
  flex: 1;
  margin-left: 300px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.3s ease;
}
.main-content .page-content {
  padding: 20px 32px;
  flex: 1;
  /* ===== Page Header ===== */
}
.main-content .page-content .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.main-content .page-content .page-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: #09204b;
}
.main-content.small {
  margin-left: 100px;
}

/* ===== Sidebar ===== */
.sidebar {
  width: 300px;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: width 0.3s ease;
}
.sidebar .sidebar-icon {
  position: absolute;
  top: 20px;
  right: -22px;
  padding: 10px;
  aspect-ratio: 1/1;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  cursor: pointer;
  background: #ad1b13;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar .sidebar-icon svg {
  stroke: #fff;
}
.sidebar .sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 18px 18px;
  border-bottom: 1px solid #eee;
}
.sidebar .sidebar-logo img {
  margin: 0 auto;
  width: auto;
  height: 70px;
}
.sidebar .sidebar-logo-text h3 {
  font-size: 13px;
  font-weight: 700;
  color: #09204b;
  line-height: 1.2;
}
.sidebar .sidebar-logo-text span {
  font-size: 10px;
  font-weight: 400;
  color: #888;
}
.sidebar .sidebar-nav ul {
  list-style: none;
}
.sidebar .sidebar-nav li {
  padding: 0 20px;
}
.sidebar .sidebar-nav li a,
.sidebar .sidebar-nav li .nav-btn,
.sidebar .sidebar-nav li .nav-submenu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.sidebar .sidebar-nav li a:hover,
.sidebar .sidebar-nav li .nav-btn:hover,
.sidebar .sidebar-nav li .nav-submenu-btn:hover {
  background: #f8f8fb;
  color: #09204b;
}
.sidebar .sidebar-nav li.active a,
.sidebar .sidebar-nav li.active .nav-btn,
.sidebar .sidebar-nav li.active .nav-submenu-btn {
  background: #09204b;
  color: #fff;
  border-radius: 6px;
}
.sidebar .sidebar-nav li.active a svg,
.sidebar .sidebar-nav li.active .nav-btn svg,
.sidebar .sidebar-nav li.active .nav-submenu-btn svg {
  stroke: #fff;
}
.sidebar .sidebar-nav li.active .nav-submenu {
  display: block;
}
.sidebar .sidebar-nav .nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sidebar .sidebar-nav .nav-arrow {
  margin-left: auto;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sidebar .sidebar-nav .nav-submenu {
  display: none;
  padding: 0 0 0 20px;
}
.sidebar .sidebar-nav .nav-submenu li {
  padding: 0;
  margin: 8px 0;
}
.sidebar .sidebar-nav .nav-submenu li a {
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.sidebar .sidebar-nav .nav-submenu li a:hover {
  background: #f8f8fb;
  color: #09204b;
}
.sidebar .sidebar-nav .nav-submenu li.active a {
  background: rgba(9, 32, 75, 0.2);
  color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar .sidebar-nav .nav-submenu li.active a svg {
  stroke: #fff;
}
.sidebar .sidebar-bottom {
  padding: 14px 18px 20px;
  border-top: 1px solid #eee;
}
.sidebar .sidebar-bottom .inbox-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-bottom: 14px;
  transition: background 0.18s;
}
.sidebar .sidebar-bottom .inbox-btn:hover {
  background: #a93226;
}
.sidebar .sidebar-bottom .inbox-btn svg {
  width: 18px;
  height: 18px;
}
.sidebar .sidebar-bottom .logout-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #c0392b;
  text-decoration: none;
  padding: 4px 4px;
  cursor: pointer;
  transition: opacity 0.18s;
}
.sidebar .sidebar-bottom .logout-link:hover {
  opacity: 0.7;
}
.sidebar .sidebar-bottom .logout-link svg {
  width: 18px;
  height: 18px;
}
.sidebar.small {
  width: 100px;
}
.sidebar.small .sidebar-logo {
  padding: 0;
}
.sidebar.small .sidebar-logo img {
  margin: 0 auto;
  width: auto;
  height: 70px;
}
.sidebar.small .sidebar-bottom {
  padding: 14px 10px 20px;
}
.sidebar.small .sidebar-bottom .inbox-btn {
  padding: 10px;
  justify-content: center;
}
.sidebar.small .sidebar-bottom .logout-link {
  justify-content: center;
}
.sidebar.small .sidebar-logo-text,
.sidebar.small .sidebar-icon,
.sidebar.small .sidebar-nav li a span,
.sidebar.small .sidebar-nav li .nav-btn span,
.sidebar.small .sidebar-nav .nav-arrow,
.sidebar.small .sidebar-nav li .nav-submenu-btn span,
.sidebar.small .sidebar-nav li .nav-submenu,
.sidebar.small .sidebar-bottom .inbox-btn span,
.sidebar.small .sidebar-bottom .logout-link span {
  display: none;
}
.sidebar.small .sidebar-nav li a,
.sidebar.small .sidebar-nav li .nav-btn,
.sidebar.small .sidebar-nav li .nav-submenu-btn {
  justify-content: center;
  padding: 11px 0;
}

/* ===== Header ===== */
.header {
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-header-left .header-icon {
  width: 36px;
  height: 36px;
  background: #c0392b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-header-left .header-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.top-header-left h1 {
  font-size: 18px;
  font-weight: 700;
  color: #09204b;
}

.top-header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.notification-bell {
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.notification-bell svg {
  width: 22px;
  height: 22px;
  stroke: #09204b;
}
.notification-bell .badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #c0392b;
  border-radius: 50%;
  border: 2px solid #fff;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: #09204b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}
.user-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  font-size: 12px;
  color: #888;
}
.breadcrumb .breadcrumb-home {
  color: #09204b;
  display: flex;
  align-items: center;
}
.breadcrumb .breadcrumb-separator {
  color: #bbb;
}
.breadcrumb .breadcrumb-current {
  color: #888;
  font-weight: 500;
}

/* ===== Reusable DataTables (.lcb-datatable) ===== */
.lcb-datatable {
  width: 100% !important;
  border-collapse: collapse;
}
.lcb-datatable thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #09204b;
  padding: 12px 14px;
  border-bottom: 2px solid #e0e0e0;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
}
.lcb-datatable tbody td {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.lcb-datatable tbody tr:last-child td {
  border-bottom: none;
}
.lcb-datatable tbody tr:hover td {
  background: #f9f9fb;
}

/* DataTables wrapper overrides */
div.dt-container {
  font-family: "Open Sans", sans-serif;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  /* ===== Top section (length + info) ===== */
}
div.dt-container .lcb-dt-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 0;
  display: none;
}
div.dt-container {
  /* ===== Bottom section (length + info + pagination) ===== */
}
div.dt-container .lcb-dt-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  border-top: none;
}
div.dt-container {
  /* Length menu styling */
}
div.dt-container .dt-length {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
div.dt-container .dt-length select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  color: #555;
  background: #fff;
  cursor: pointer;
  outline: none;
}
div.dt-container .dt-length select:focus {
  border-color: #09204b;
}
div.dt-container .dt-length label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #888;
}
div.dt-container {
  /* Info text */
}
div.dt-container .dt-info {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}
div.dt-container {
  /* ===== Pagination ===== */
}
div.dt-container .dt-paging {
  display: flex;
  align-items: center;
  gap: 4px;
}
div.dt-container .dt-paging .dt-paging-button {
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  color: #555;
  cursor: pointer;
  padding: 0 8px;
  transition: all 0.18s;
}
div.dt-container .dt-paging .dt-paging-button:hover:not(.disabled):not(.current) {
  border-color: #09204b;
  color: #09204b;
}
div.dt-container .dt-paging .dt-paging-button.current {
  background: #09204b;
  color: #fff;
  border-color: #09204b;
}
div.dt-container .dt-paging .dt-paging-button.disabled {
  opacity: 0.4;
  cursor: default;
}
div.dt-container {
  /* ===== Page number select ===== */
}
div.dt-container .dt-paging select {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  color: #555;
  background: #fff;
  cursor: pointer;
  outline: none;
}
div.dt-container {
  /* Hide default search (we use custom) */
}
div.dt-container .dt-search {
  display: none;
}

/* ===== DataTables sort icon overrides ===== */
table.dataTable thead th.dt-orderable-asc span.dt-column-order,
table.dataTable thead th.dt-orderable-desc span.dt-column-order {
  right: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 10px;
}

/* ===== Broadcast Management Page ===== */
/* ===== Table Card ===== */
.box-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
}

.table-photo {
  width: 32px;
  height: 32px;
  background: #d9d9d9;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.table-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.table-card-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: #09204b;
}

.table-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Search Box ===== */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 12px;
  background: #fff;
}
.search-box svg {
  flex-shrink: 0;
  stroke: #aaa;
}
.search-box input {
  border: none;
  outline: none;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  width: 120px;
  color: #333;
  height: 26px;
}
.search-box input::-moz-placeholder {
  color: #bbb;
}
.search-box input::placeholder {
  color: #bbb;
}

/* ===== Filter & Date Buttons ===== */
.btn-filter,
.btn-date-created {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 7px 14px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #555;
  cursor: pointer;
  transition: all 0.18s;
}
.btn-filter:hover,
.btn-date-created:hover {
  border-color: #09204b;
  color: #09204b;
}
.btn-filter svg,
.btn-date-created svg {
  flex-shrink: 0;
  stroke: #888;
}

/* ===== Table Cell Styles ===== */
.link-detail {
  color: #c0392b;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
}
.link-detail:hover {
  text-decoration: underline;
}

.receiver-count {
  color: #c0392b;
  font-weight: 600;
  font-size: 12px;
}

/* ===== Toggle Switch ===== */
.status-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 20px;
  transition: 0.3s;
}
.toggle-switch .toggle-slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #09204b;
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(16px);
}

.status-text {
  font-size: 12px;
  font-weight: 600;
}
.status-text.active {
  color: #09204b;
}
.status-text.inactive {
  color: #aaa;
}

/* ===== Action Buttons ===== */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-action {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: opacity 0.18s;
  white-space: nowrap;
}
.btn-action:hover {
  opacity: 0.7;
}
.btn-action svg {
  flex-shrink: 0;
}

.btn-preview {
  color: #09204b;
}
.btn-preview svg {
  stroke: #09204b;
}

.btn-edit {
  color: #d97706;
}
.btn-edit svg {
  stroke: #d97706;
}

.btn-delete {
  color: #c0392b;
}
.btn-delete svg {
  stroke: #c0392b;
}

.tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}
.tag-list .tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: #f4f5fa;
  color: #09204b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.tag-list .add-tag-btn {
  white-space: nowrap;
  padding: 4px 10px;
  font-size: 12px;
}

.select2 {
  width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--single .select2-selection__rendered {
  display: flex !important;
  align-items: center !important;
  height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 100;
}
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 101;
  width: 100%;
  max-width: 520px;
}
.modal .modal-box .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.modal .modal-box .modal-header h3 {
  font-size: 18px;
  font-weight: 600;
}
.modal .modal-box .modal-header .modal-close {
  background: #ad1b13;
  border-radius: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal .modal-box .modal-header .modal-close svg {
  stroke: #fff;
}
.modal .modal-box .modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal .modal-box .modal-content .modal-content-title {
  font-size: 16px;
  font-weight: 600;
  color: #8b8d97;
}
.modal .modal-box .modal-content .change-photo-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.modal .modal-box .modal-content .photo-box {
  width: 108px;
  height: 108px;
  border-radius: 18px;
  background: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal .modal-box .modal-content .photo-box svg {
  width: 54px;
  height: 54px;
}
.modal .modal-box .modal-content .photo-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.modal .modal-box .modal-content .change-photo-box {
  position: relative;
}
.modal .modal-box .modal-content .change-photo-box input[type=file] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal .modal-box .modal-footer {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ===== Password Criteria ===== */
.password-criteria {
  margin-top: 4px;
}
.password-criteria .criteria-title {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}
.password-criteria .criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.password-criteria .criteria-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #c0392b;
  transition: color 0.2s;
}
.password-criteria .criteria-list li.met {
  color: #27ae60;
}
.password-criteria .criteria-list li.met .icon-check {
  display: inline-block !important;
}
.password-criteria .criteria-list li.met .icon-x {
  display: none !important;
}
.password-criteria .criteria-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.password-criteria .criteria-icon .icon-check {
  stroke: #27ae60;
}
.password-criteria .criteria-icon .icon-x {
  stroke: #c0392b;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .broadcast-content {
    padding: 0 16px 16px;
  }
  .table-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .table-card-actions {
    flex-wrap: wrap;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}/*# sourceMappingURL=main.css.map */