@charset "UTF-8";
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  margin-top: 20px;
}
.admin-table thead tr {
  background: #ffffff;
}
.admin-table th, .admin-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.admin-table th {
  border-bottom: 2px solid #dadce0;
}
.admin-table .text-center {
  text-align: center;
}
.admin-table .text-right {
  text-align: right;
}

.badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}
.badge.badge-live {
  background: #d4edda;
  color: #155724;
}
.badge.badge-draft {
  background: #fff3cd;
  color: #856404;
}
.badge.badge-admin {
  background: #a142f4;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
}
.badge.badge-member {
  background: #bdc3c7;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
}
.badge.badge-status-live {
  background: #f0fff4;
  color: #22543d;
  font-size: 11px;
  border: 1px solid #c6f6d5;
}
.badge.badge-status-draft {
  background: #edf2f7;
  color: #4a5568;
  font-size: 11px;
  border: 1px solid #cbd5e0;
}

.form-container {
  background: white;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  margin-bottom: 40px;
  font-family: "Roboto", sans-serif;
}

.grid-2 {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
}

.grid-span-2 {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 10px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 13px;
  color: #202124;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=password],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
}

.btn {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: rgb(18.8928571429, 92, 188.1071428571);
}
.btn.btn-success {
  background: #34a853;
}
.btn.btn-success:hover {
  background: rgb(45.9727272727, 148.5272727273, 73.3795454545);
}
.btn.btn-secondary {
  background: #bdc3c7;
  color: black;
}
.btn.btn-orange {
  background: #e67e22;
}
.btn.btn-full {
  width: 100%;
}

.centered-form-wrapper {
  max-width: 550px;
  margin: 40px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.form-title {
  margin-top: 0;
  color: #2c3e50;
}

.form-subtitle {
  color: #7f8c8d;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-section {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.form-section-title {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 13px;
  color: #2c3e50;
}

.form-sub-label {
  color: #7f8c8d;
  font-size: 12px;
}

.grid-gap-sm {
  display: grid;
  gap: 10px;
}

.btn-submit {
  font-size: 15px;
  margin-top: 10px;
}

.btn-checkout-large {
  font-size: 16px;
  padding: 15px;
  margin-top: 10px;
}

.btn-info {
  background: #1967d2;
}
.btn-info:hover {
  background: rgb(19.5744680851, 80.6468085106, 164.4255319149);
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  max-width: 400px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-md {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-secondary {
  background: #e2e8f0;
  color: #4a5568;
}
.btn-secondary:hover {
  background: rgb(192.3863636364, 205.3409090909, 222.6136363636);
}

.btn-xs {
  padding: 6px 12px;
  font-size: 12px;
}

.btn-lg {
  padding: 12px 35px;
  font-weight: bold;
  font-size: 14px;
}

.btn-secondary {
  background-color: #e2e8f0;
  color: #4a5568;
}
.btn-secondary:hover {
  background-color: rgb(209.1931818182, 218.6704545455, 231.3068181818);
}

.btn-success {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
}

.btn-primary {
  background-color: #3182ce;
  color: white;
}
.btn-primary:hover {
  background-color: rgb(39.2, 104, 164.8);
}

.btn-md-large {
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
}

.admin-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.admin-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.admin-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.3s;
  border-radius: 24px;
}

.admin-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-toggle-switch input:checked + .admin-toggle-slider {
  background-color: #10b981;
}

.admin-toggle-switch input:checked + .admin-toggle-slider:before {
  transform: translateX(20px);
}

/* ==========================================
   PUBLIC FRONTEND FORM BUILDER STYLES
   ========================================== */
.public-form-container {
  max-width: 800px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

.public-form-group {
  margin-bottom: 20px;
}

.public-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.public-form-required {
  color: #ef4444;
  margin-left: 3px;
}

.public-form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 15px;
  color: #334155;
  background-color: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.public-form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background-color: #ffffff;
}

.public-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.public-form-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: #3b82f6;
  vertical-align: middle;
}

.public-form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.public-form-radio-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #475569;
}

.public-form-radio-label input[type=radio] {
  margin-right: 8px;
  accent-color: #3b82f6;
  width: 16px;
  height: 16px;
}

.public-form-file {
  padding: 8px;
  background-color: #f1f5f9;
}

.public-form-submit-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background-color: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 10px;
}

.public-form-submit-btn:hover {
  background-color: #1e293b;
}

.public-form-submit-btn:disabled {
  background-color: #94a3b8;
  cursor: not-allowed;
}

.material-icons-outlined {
  font-size: 1.2em; /* Auto-scale based on parent container's font size */
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: -1px; /* Optical center adjustment */
  line-height: 1;
}

/* Ensure icons inside buttons and badges look proportional */
.btn .material-icons-outlined,
button .material-icons-outlined {
  font-size: 1.1em;
  margin-right: 5px;
}

.badge .material-icons-outlined {
  font-size: 1.1em;
  margin-right: 3px;
  top: 0; /* Reset optical center for badges */
}

/* Ensure headers don't make icons overwhelmingly large */
h1 .material-icons-outlined,
h2 .material-icons-outlined,
h3 .material-icons-outlined {
  font-size: 1.1em;
  margin-right: 8px;
  color: #1a73e8; /* Add a touch of brand identity to header icons */
}

.admin-control-bar {
  background: white;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Roboto", sans-serif;
}

.status-dropdown {
  padding: 4px;
  font-size: 12px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: pointer;
}
.status-dropdown.status-active {
  background-color: #e1f5fe;
}
.status-dropdown.status-pending {
  background-color: #ffeaa7;
}
.status-dropdown.status-suspended {
  background-color: #f8d7da;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 500px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: "Roboto", sans-serif;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  background-color: #f4f6f9;
}

.admin-sidebar {
  width: 280px;
  background-color: #ffffff;
  color: #202124;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dadce0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}
.admin-sidebar .sidebar-brand {
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  background-color: #ffffff;
  border-bottom: 1px solid #dadce0;
}
.admin-sidebar .sidebar-brand a {
  color: #202124;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-sidebar .sidebar-menu {
  list-style: none;
  padding: 10px;
  margin: 0;
}
.admin-sidebar .sidebar-menu li {
  margin-bottom: 4px;
}
.admin-sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  color: #5f6368;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 24px 24px 0;
  transition: all 0.2s ease;
}
.admin-sidebar .sidebar-menu li a:hover {
  color: #202124;
  background-color: #f1f3f4;
}
.admin-sidebar .sidebar-menu li a.active {
  color: #1a73e8;
  background-color: #e8f0fe;
}
.admin-sidebar .sidebar-menu li a .material-icons-outlined {
  font-size: 20px;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-topbar {
  background-color: white;
  padding: 15px 30px;
  border-bottom: 1px solid #dadce0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-topbar .admin-title {
  margin: 0;
  font-size: 18px;
  color: #202124;
  font-weight: 600;
}
.admin-topbar .view-site-link {
  color: #1a73e8;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}
.admin-topbar .view-site-link:hover {
  text-decoration: underline;
}

.admin-content-body {
  padding: 30px;
  flex: 1;
  overflow-y: auto;
}

.drive-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
}
.drive-link:hover {
  background-color: #c8e6c9;
  color: #1b5e20;
}
.drive-link:active {
  transform: scale(0.98);
}

.admin-header-main {
  flex: 1;
}

.admin-page-title {
  margin: 0;
  font-size: 20px;
  color: #2c3e50;
  font-weight: 700;
}

.admin-page-subtitle {
  margin: 5px 0 0 0;
  font-size: 13px;
  color: #7f8c8d;
}

.admin-panel {
  margin-bottom: 20px;
}

.admin-panel-title {
  margin: 0 0 15px 0;
  font-size: 15px;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.admin-select-input {
  margin-bottom: 15px;
}

.admin-form-help-text {
  display: block;
  margin-top: -10px;
  margin-bottom: 15px;
  color: #7f8c8d;
  font-size: 11px;
}

.admin-panel-text {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 20px;
}

.admin-flex-form {
  display: flex;
  gap: 15px;
  align-items: center;
}

.form-group-flex {
  margin: 0;
  flex: 1;
}

.admin-file-upload {
  font-size: 13px;
  padding: 6px;
  border: 1px dashed #ccc;
  width: 100%;
  border-radius: 4px;
  background: #fafafa;
}

.admin-panel-pt {
  padding-top: 20px;
}

.admin-panel-title-no-border {
  margin: 0 0 15px 0;
  font-size: 15px;
  color: #2c3e50;
}

.admin-table-flat {
  margin-top: 0;
  box-shadow: none;
  border: 1px solid #eee;
}

.admin-table-bold {
  color: #2c3e50;
  font-size: 14px;
}

.admin-table-code {
  font-size: 12px;
  font-family: monospace;
  color: #7f8c8d;
}

.badge-sm {
  font-size: 11px;
}

.badge-inactive {
  background: #95a5a6;
  font-size: 11px;
}

.admin-page-header-flex {
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-create {
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}

.admin-grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
}

.admin-panel-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  border: 1px solid #f1f3f4;
}

.admin-mono-link {
  color: #3182ce;
  text-decoration: none;
  font-family: monospace;
  font-weight: 600;
}
.admin-mono-link:hover {
  text-decoration: underline;
}

.admin-blueprint-badge {
  background: #edf2f7;
  color: #2d3748;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-family: monospace;
  font-weight: bold;
}

.admin-inline-form {
  display: inline-block;
  margin-left: 4px;
}

.btn-text-link {
  background: none;
  border: none;
  color: #3182ce;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}

.admin-actions-flex {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.btn-badge-primary, .btn-badge-secondary, .btn-badge-danger {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  margin-right: 5px;
}
.btn-badge-primary .material-icons-outlined, .btn-badge-secondary .material-icons-outlined, .btn-badge-danger .material-icons-outlined {
  font-size: 16px;
  margin-right: 4px;
}

.btn-badge-primary {
  background-color: #ebf8ff;
  color: #3182ce;
  border: 1px solid #bee3f8;
}
.btn-badge-primary:hover {
  background-color: #bee3f8;
}

.btn-badge-secondary {
  background-color: #f7fafc;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}
.btn-badge-secondary:hover {
  background-color: #e2e8f0;
}

.btn-badge-danger {
  background-color: #fff5f5;
  color: #e53e3e;
  border: 1px solid #fed7d7;
}
.btn-badge-danger:hover {
  background-color: #fed7d7;
}

.admin-table-empty {
  color: #a4b0be;
  padding: 40px 0;
  font-style: italic;
}

.admin-panel-upload {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #48bb78;
}

.admin-upload-desc {
  margin: 0 0 15px 0;
  color: #718096;
  font-size: 12px;
  line-height: 1.4;
}

.admin-form-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-label {
  font-weight: bold;
  font-size: 13px;
  color: #4a5568;
}

.admin-file-upload-large {
  font-size: 13px;
  border: 1px dashed #cbd5e0;
  padding: 15px;
  border-radius: 4px;
  background: #f7fafc;
  cursor: pointer;
}

.btn-success-full {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  font-size: 13px;
  background: #48bb78;
  border-color: #48bb78;
  color: white;
}

.admin-form-container-md {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
}

.admin-form-col-lg {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.admin-label-block {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

.admin-input-full {
  width: 100%;
  padding: 8px;
  border: 1px solid #dadce0;
  border-radius: 4px;
}
.admin-input-full:focus {
  outline: none;
  border-color: #1967d2;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.admin-dynamic-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-left: 4px solid #3182ce;
  padding-left: 15px;
  margin: 10px 0;
}

.admin-dynamic-empty-text {
  color: #a0aec0;
  font-style: italic;
  margin: 0;
}

.admin-form-actions {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-error-text {
  color: #e53e3e;
  margin: 0;
}

.admin-dynamic-field {
  margin-bottom: 15px;
}

.admin-dynamic-label {
  font-weight: bold;
  color: #2d3748;
  display: block;
  margin-bottom: 4px;
}

.admin-textarea-mono {
  width: 100%;
  padding: 8px;
  font-family: monospace;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  resize: vertical;
}
.admin-textarea-mono:focus {
  outline: none;
  border-color: #1967d2;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.2);
}

.admin-back-link-wrapper {
  margin-bottom: 20px;
}

.admin-back-link {
  color: #3182ce;
  font-size: 14px;
  text-decoration: none;
}
.admin-back-link:hover {
  text-decoration: underline;
}

.admin-page-subtitle-alt {
  color: #718096;
  font-size: 14px;
  margin-top: -5px;
  margin-bottom: 20px;
}

.admin-code-strong {
  font-family: monospace;
  color: #2d3748;
}

.admin-dynamic-field-sm {
  margin-bottom: 5px;
}

.admin-code-badge {
  background: #edf2f7;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #e74c3c;
  font-family: monospace;
}

.admin-code-badge-blue {
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #2980b9;
  font-family: monospace;
}

.admin-inline-form {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.admin-empty-state {
  text-align: center;
  padding: 50px 20px;
  border-style: dashed;
  border-width: 2px;
  border-color: #cbd5e0;
  border-radius: 8px;
}

.admin-empty-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.admin-empty-title {
  margin: 0 0 10px 0;
  color: #2c3e50;
}

.admin-empty-text {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #7f8c8d;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.admin-modal-title {
  margin: 0;
  font-size: 18px;
  color: #2c3e50;
}

.admin-modal-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #95a5a6;
}

.admin-form-actions-right {
  margin: 0;
  text-align: right;
  margin-top: 15px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mr-5 {
  margin-right: 5px;
}

.admin-code-muted {
  background: #f7fafc;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #4a5568;
}

.badge-status-gray-pill {
  background: #e2e8f0;
  color: #4a5568;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.admin-content-center-lg {
  max-width: 750px;
  margin: 0 auto;
}

.admin-grid-2-1-gap-15 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.mb-6 {
  margin-bottom: 6px;
}

.admin-textarea-sm-full {
  width: 100%;
  padding: 8px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  resize: vertical;
  font-family: inherit;
}

.form-group-spaced {
  margin-top: 15px;
  margin-bottom: 25px;
}

.admin-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.admin-radio-label {
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.admin-checkbox-label {
  display: inline;
  font-weight: normal;
  font-size: 13px;
  color: #4a5568;
  cursor: pointer;
  user-select: none;
}

.admin-form-actions-right {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
  text-align: right;
}

.admin-panel-title-sm {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #2c3e50;
}

.admin-panel-subtitle {
  margin: 0 0 15px 0;
  font-size: 12px;
  color: #7f8c8d;
}

.admin-input-xs {
  width: 45px;
  padding: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #2c3e50;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.admin-nested-indicator {
  color: #bdc3c7;
  margin-right: 6px;
  font-weight: normal;
  font-family: monospace;
}

.admin-table-bold-muted {
  color: #4a5568;
  font-size: 14px;
  font-weight: bold;
}

.badge-nested {
  background: #7f8c8d;
  color: white;
}

.badge-top-level {
  background: #e3f2fd;
  color: #1e88e5;
}

.admin-empty-state-alt {
  text-align: center;
  padding: 40px 20px;
  background: #fafafa;
  border: 1px dashed #ddd;
  border-radius: 4px;
  margin-top: 10px;
}

.admin-empty-icon-sm {
  font-size: 30px;
  margin-bottom: 10px;
}

.admin-empty-title-sm {
  margin: 0 0 5px 0;
  color: #7f8c8d;
  font-size: 14px;
}

.admin-empty-text-sm {
  margin: 0;
  font-size: 12px;
  color: #95a5a6;
}

.w-80 {
  width: 80px;
}

.w-100px {
  width: 100px;
}

.ml-4 {
  margin-left: 4px;
}

.align-middle {
  vertical-align: middle;
}

.nested-cell {
  padding-left: 35px;
}

.default-cell {
  padding-left: 12px;
}

.row-nested {
  background-color: #fafbfc;
}

.admin-header-container {
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
}

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

.text-primary {
  color: #3182ce;
}

.badge-sequence {
  background: #edf2f7;
  color: #2b6cb0;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-family: monospace;
}

.admin-inline-form-ml {
  display: inline-block;
  margin-left: 4px;
}

.btn-link-xs {
  background: none;
  border: none;
  color: #3182ce;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
}

.admin-action-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.admin-table-empty {
  color: #a4b0be;
  padding: 40px 0;
  font-style: italic;
}

.admin-form-container-lg {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
}

.admin-grid-2-1-80 {
  display: grid;
  grid-template-columns: 2fr 1fr 80px;
  gap: 15px;
}

.admin-input-number {
  width: 100%;
  padding: 8px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}

.quill-editor-lg {
  height: 380px;
  font-size: 16px;
  background: white;
}

.mr-10 {
  margin-right: 10px;
}

.m-0 {
  margin: 0;
}

.mt-6 {
  margin-top: 6px;
}

.ml-5 {
  margin-left: 5px;
}

.admin-header-flex-border {
  font-family: "Roboto", sans-serif;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 15px;
}

.btn-flex {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flex-1 {
  flex: 1;
}

.min-w-250 {
  min-width: 250px;
}

.admin-id-block {
  display: block;
  margin-bottom: 4px;
}

.admin-cell-contact {
  font-size: 13px;
  line-height: 1.4;
}

.text-muted-dark {
  color: #57606f;
}

.admin-cell-address {
  font-size: 12px;
  line-height: 1.4;
  max-width: 220px;
}

.admin-address-street {
  font-weight: 600;
  display: block;
}

.admin-address-country {
  display: block;
  color: #7f8c8d;
  font-size: 11px;
  text-transform: uppercase;
}

.admin-table-empty-search {
  color: #7f8c8d;
  font-style: italic;
  padding: 30px;
}

.modal-content-lg {
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  padding: 25px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-modal-title-border {
  margin-top: 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.admin-form-grid-mt {
  display: grid;
  margin-top: 15px;
}

.admin-form-section-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  padding: 15px;
  margin: 5px 0;
}

.admin-section-label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12px;
  color: #2c3e50;
}

.admin-grid-gap-10 {
  display: grid;
  gap: 10px;
}

.admin-label-xs {
  font-size: 11px;
  color: #7f8c8d;
}

.admin-form-section-title {
  margin: 0;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 8px;
  color: #2d3748;
  font-size: 16px;
}

.admin-form-section-title-mt {
  margin: 10px 0 0 0;
  border-bottom: 1px solid #edf2f7;
  padding-bottom: 8px;
  color: #2d3748;
  font-size: 16px;
}

.admin-label-block-sm {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.admin-grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
}

.admin-search-input-lg {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  border: 2px solid #cbd5e0;
  border-radius: 6px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.15s;
}
.admin-search-input-lg:focus {
  border-color: #3182ce;
}

.admin-search-results {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: none;
  background: #f7fafc;
  margin-bottom: 20px;
}

.modal-content-xl {
  background: white;
  width: 100%;
  max-width: 750px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  color: #a4b0be;
  cursor: pointer;
}

.admin-modal-title-bold {
  margin: 0 0 20px 0;
  color: #2c3e50;
  border-bottom: 2px solid #f1f2f6;
  padding-bottom: 10px;
}

.admin-label-bold {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.w-100 {
  width: 100%;
}

.admin-textarea-full {
  width: 100%;
  padding: 8px;
  resize: vertical;
}

.mb-10 {
  margin-bottom: 10px;
}

.admin-label-bold-dark {
  margin: 0;
  font-weight: bold;
  color: #2d3748;
}

.admin-form-section-accent {
  background: #f1f2f6;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #dcdde1;
}

.admin-grid-scrollable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 100px;
  overflow-y: auto;
}

.admin-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-checkbox {
  width: auto;
  cursor: pointer;
}

.admin-checkbox-label {
  margin: 0;
  font-size: 13px;
  color: #2f3542;
  cursor: pointer;
}

.admin-form-section-danger {
  background: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 4px;
  padding: 15px;
}

.admin-label-danger {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 12px;
  color: #c53030;
}

.mb-12 {
  margin-bottom: 12px;
}

.admin-input-sm-full {
  width: 100%;
  padding: 6px;
}

.admin-grid-1-1-gap-10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-select-sm-full {
  width: 100%;
  padding: 6px;
  background: white;
}

.admin-checkbox-card {
  background: #f7fafc;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-cell-multiline-ellipsis {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 4px;
  max-width: 300px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-cell-venue {
  font-size: 13px;
  color: #2f3542;
}

.admin-price-original {
  text-decoration: line-through;
  color: #a4b0be;
  font-size: 12px;
  margin-right: 4px;
}

.admin-price-discounted {
  color: #e74c3c;
  font-size: 14px;
  display: block;
}

.admin-price-regular {
  color: #2c3e50;
  font-size: 14px;
}

.badge-promo-active {
  background: #e74c3c;
  color: white;
  font-size: 10px;
  display: inline-block;
}

.badge-promo-inactive {
  font-size: 10px;
  display: inline-block;
  background: #e2e8f0;
  color: #4a5568;
}

.badge-ribbon {
  background: #e67e22;
  color: white;
}

.mt-6 {
  margin-top: 6px;
}

.badge-status-draft {
  background: #edf2f7;
  color: #4a5568;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid #cbd5e0;
}

.badge-status-live {
  background: #f0fff4;
  color: #22543d;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid #c6f6d5;
}

.admin-inline-form-ml {
  display: inline-block;
  margin-left: 6px;
}

.btn-link-xs {
  background: none;
  border: none;
  color: #3182ce;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.modal-content-lg {
  background: white;
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.modal-content-sm {
  background: white;
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
}

.admin-form-grid-mt {
  display: grid;
  margin-top: 15px;
}

.admin-timetable-row {
  display: grid;
  grid-template-columns: 140px 110px 1fr auto;
  gap: 10px;
  margin-bottom: 8px;
  align-items: center;
}

.admin-label-xs {
  font-size: 11px;
  color: #7f8c8d;
}

.admin-input-full-mono {
  width: 100%;
  padding: 8px;
  font-family: monospace;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}

.admin-grid-1-1-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  background: #f7fafc;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.admin-select-full-bold {
  width: 100%;
  padding: 8px;
  font-weight: bold;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
}

.admin-checkbox-group-mt {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.admin-checkbox-label-danger {
  margin: 0;
  font-weight: bold;
  font-size: 13px;
  color: #c53030;
  cursor: pointer;
}

.admin-grid-2-1-1-1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 15px;
}

.admin-code-dark {
  color: #2d3748;
}

.admin-grid-2-1-lg {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
}

.admin-code-badge-gray {
  background: #f7fafc;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: #718096;
}

.mr-5 {
  margin-right: 5px;
}

.btn-link-danger {
  background: none;
  border: none;
  color: #c53030;
  font-size: 13px;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}

.admin-panel-card-accent {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3182ce;
}

.admin-form-col-md {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
}

.admin-input-md, .admin-textarea-md {
  padding: 10px;
  border: 1px solid #cbd5e0;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.admin-form-col-sm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.admin-form-col-xs {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.admin-label-sm {
  font-weight: bold;
  font-size: 13px;
  color: #4a5568;
}

.admin-input-file {
  font-size: 13px;
  padding: 5px 0;
}

.btn-primary-full {
  width: 100%;
  padding: 10px;
  font-weight: bold;
  font-size: 13px;
  background: #3182ce;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.btn-primary-full:hover {
  background: rgb(39.2, 104, 164.8);
}

.admin-grid-1-1-gap-20 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-stat-card-blue {
  background: white;
  border-left: 5px solid #3182ce;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-stat-card-green {
  background: white;
  border-left: 5px solid #38a169;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-stat-label {
  font-size: 12px;
  color: #718096;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-stat-value {
  margin: 5px 0 0 0;
  font-size: 28px;
  color: #2d3748;
}

.admin-stat-sub {
  font-size: 14px;
  color: #a0aec0;
  font-weight: normal;
}

.admin-cell-muted-xs {
  font-size: 11px;
  color: #a0aec0;
}

.mt-2 {
  margin-top: 2px;
}

.admin-link-mono {
  color: #3182ce;
  text-decoration: none;
  font-family: monospace;
  font-weight: 600;
}

.admin-content-center-xl {
  max-width: 900px;
  margin: 0 auto;
}

.quill-editor-container-md {
  height: 350px;
  font-size: 16px;
  background: white;
}

.admin-checkbox-label-bold {
  margin: 0;
  font-weight: bold;
  font-size: 13px;
  color: #4a5568;
  cursor: pointer;
}

.admin-label-bold-block {
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #4a5568;
}

.admin-flex-gap-10 {
  display: flex;
  gap: 10px;
}

.btn-tab {
  text-decoration: none;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-tab-active {
  background: #2b6cb0;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-tab-inactive {
  background: #edf2f7;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.admin-path-bar {
  background: #edf2f7;
  padding: 12px 15px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 14px;
  color: #2d3748;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-link-bold-blue {
  color: #2b6cb0;
  font-weight: bold;
  text-decoration: none;
}

.admin-text-dark {
  color: #2d3748;
}

.admin-cell-muted-sm {
  font-size: 12px;
  color: #718096;
}

.admin-code-badge {
  background: #f7fafc;
  padding: 2px 4px;
  border-radius: 4px;
}

.admin-panel-card-border-blue {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2b6cb0;
}

.admin-panel-card-border-green {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #48bb78;
}

.admin-label-bold-sm {
  font-weight: bold;
  font-size: 12px;
  color: #4a5568;
}

.admin-input-file {
  font-size: 13px;
  padding: 5px 0;
  font-family: inherit;
}

.modal-overlay-flex {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content-sm-center {
  background: white;
  padding: 24px;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.admin-modal-title-sm {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #202124;
}

.admin-modal-title-xs {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #202124;
}

.admin-modal-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #dadce0;
  padding-bottom: 10px;
}

.modal-close-btn-xs {
  background: none;
  border: none;
  font-size: 22px;
  color: #5f6368;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.modal-close-btn-xs:hover {
  color: #ea4335;
}

.admin-action-group-mb10 {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: center;
}

.admin-input-md-full {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.admin-input-md-full:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.admin-content-center-md {
  max-width: 700px;
  margin: 0 auto;
}

.admin-form-card-col {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-form-group-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-grid-1-1-gap-15 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.admin-grid-1-1-gap-10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.admin-grid-2-1-lg {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

.admin-form-actions-border {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #dadce0;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.admin-form-col-sm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.admin-input-sm-full {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.admin-input-sm-full:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.admin-panel-card-border-top {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  border-top: 4px solid #1a73e8;
}

.admin-header-container {
  margin-bottom: 25px;
}

.btn-dark {
  background-color: #202124;
  color: white;
  border: none;
  transition: background-color 0.2s;
}
.btn-dark:hover {
  background-color: rgb(68, 70.125, 76.5);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
}

.product-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #dadce0;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.product-card .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #eaedd0;
}
.product-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .card-ribbon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #e67e22;
  color: white;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-card .card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card .card-title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #202124;
}
.product-card .card-meta {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card .card-price-block {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1f2f6;
}
.product-card .card-price-block .old-price {
  text-decoration: line-through;
  color: #a4b0be;
  font-size: 12px;
  margin-right: 5px;
}
.product-card .card-price-block .current-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}
.product-card .card-price-block .standard-price {
  color: #202124;
  font-weight: bold;
  font-size: 15px;
}

.item-view-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Roboto", sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .item-view-container {
    grid-template-columns: 1fr;
  }
}

.item-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.item-gallery .main-display-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}
.item-gallery .thumbnail-grid {
  display: flex;
  gap: 10px;
}
.item-gallery .thumbnail-grid img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #dadce0;
}
.item-gallery .thumbnail-grid img:hover {
  border-color: #1a73e8;
}

.item-details-panel .item-title {
  font-size: 28px;
  margin: 0 0 15px 0;
  color: #202124;
}
.item-details-panel .item-venue {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 20px;
}
.item-details-panel .item-description {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 25px;
}
.item-details-panel .info-section-box {
  background: white;
  border: 1px solid #dadce0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.item-details-panel .info-section-box h4 {
  margin: 0 0 10px 0;
  color: #202124;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.item-details-panel .info-section-box ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
}
.item-details-panel .info-section-box p {
  margin: 0;
  font-size: 13px;
  white-space: pre-line;
  color: #4a5568;
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaedd0;
  color: #718096;
  font-size: 13px;
  font-weight: bold;
}

.card-meta-highlight {
  color: #4a5568;
  font-weight: 500;
}

.empty-catalog-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.empty-catalog-text {
  color: #a0aec0;
  font-size: 16px;
  margin: 0;
  font-style: italic;
}

.gallery-empty-state {
  background: #e2e8f0;
  border-radius: 6px;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f8c8d;
}

.info-section-highlight {
  border-left: 4px solid #e74c3c;
  background: #fffcfc;
}

.price-label-standard {
  margin: 0;
  font-size: 14px;
  color: #7f8c8d;
}

.price-strikethrough {
  text-decoration: line-through;
}

.price-discount-active {
  margin: 5px 0 0 0;
  font-size: 22px;
  color: #e74c3c;
  font-weight: bold;
}

.discount-badge {
  font-size: 11px;
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 5px;
}

.price-normal {
  margin: 0;
  font-size: 20px;
  color: #2c3e50;
  font-weight: bold;
}

/* ==========================================================================
   🍞 Toast Notification System
   ========================================================================== */
#global-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000; /* Above all modals and navs */
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none; /* Let clicks pass through empty space */
}

.toast-notification {
  min-width: 300px;
  max-width: 450px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto; /* Re-enable clicks on the toast itself */
  animation: toastSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, toastFadeOut 0.4s ease-out 3.5s forwards;
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.toast-notification:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Color Coding Themes */
.toast-success {
  background-color: #00bd55; /* Moving Lymph Green */
  border-left: 6px solid #007032; /* Moving Lymph Dark Green */
}

.toast-error {
  background-color: #e53e3e;
  border-left: 6px solid #c53030;
}

.toast-info {
  background-color: #f6ad55;
  border-left: 6px solid #dd6b20;
}

/* Animations */
@keyframes toastSlideIn {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes toastFadeOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
.nav-group {
  margin-bottom: 20px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #1a202c;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  transition: background 0.2s;
}
.admin-nav-link:hover {
  background-color: #edf2f7;
}
.admin-nav-link:focus {
  outline: 3px solid #3182ce;
  outline-offset: -3px;
}
.admin-nav-link.sub-link {
  padding-left: 25px;
  font-size: 0.9em;
  opacity: 0.85;
}

.nav-sub-menu {
  padding-left: 28px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: #4a5568;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s;
}
.admin-sub-link:hover {
  color: #1a202c;
  background-color: #edf2f7;
}
.admin-sub-link:focus {
  outline: 3px solid #3182ce;
  color: #1a202c;
  background-color: #edf2f7;
}

.nav-icon {
  font-size: 16px;
}
.nav-icon.sub-icon {
  font-size: 13px;
}

/* ==========================================================================
   🗺️ HEADER & FOOTER LAYOUT
   ========================================================================== */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #dadce0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.site-header .header-logo-container {
  margin-bottom: 20px;
}
.site-header .header-logo-container .site-logo {
  font-size: 28px;
  font-weight: 700;
  color: #492669;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-header .public-navbar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .site-header .public-navbar {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
  }
  .site-header .public-navbar .nav-links-container {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

.nav-auth-actions {
  display: flex;
  gap: 10px;
}
.nav-auth-actions .auth-btn {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}
.nav-auth-actions .auth-btn.admin-btn {
  background: #1a73e8;
  color: white;
}
.nav-auth-actions .auth-btn.admin-btn:hover {
  background: rgb(18.8928571429, 92, 188.1071428571);
}
.nav-auth-actions .auth-btn.logout-btn {
  background: #fef2f2;
  color: #ea4335;
  border: 1px solid #fecaca;
}
.nav-auth-actions .auth-btn.logout-btn:hover {
  background: #fee2e2;
}
.nav-auth-actions .auth-btn.login-btn {
  background: transparent;
  border: 1px solid #dadce0;
  color: #5f6368;
}
.nav-auth-actions .auth-btn.login-btn:hover {
  background: #f8f9fa;
}
.nav-auth-actions .auth-btn.signup-btn {
  background: #202124;
  color: white;
}
.nav-auth-actions .auth-btn.signup-btn:hover {
  background: rgb(56, 57.75, 63);
}

.nav-user-dropdown-container {
  position: relative;
  display: inline-block;
}
.nav-user-dropdown-container .nav-user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50px;
  transition: background 0.2s;
}
.nav-user-dropdown-container .nav-user-trigger:hover {
  background: #f1f5f9;
}
.nav-user-dropdown-container .nav-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}
.nav-user-dropdown-container .nav-user-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}
.nav-user-dropdown-container .nav-user-caret {
  font-size: 18px;
  color: #64748b;
}
.nav-user-dropdown-container .nav-user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  padding: 10px 0;
  z-index: 1000;
  display: none;
}
.nav-user-dropdown-container .nav-user-dropdown-menu.show {
  display: block;
  animation: fadeIn 0.2s ease;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-user-info {
  padding: 10px 20px;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-user-info strong {
  display: block;
  color: #1e293b;
  font-size: 15px;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-user-info span {
  display: block;
  color: #64748b;
  font-size: 13px;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-user-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 8px 0;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item .material-icons-outlined {
  font-size: 18px;
  color: #64748b;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item:hover {
  background: #f8fafc;
  color: #3b82f6;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item:hover .material-icons-outlined {
  color: #3b82f6;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item.logout-link {
  color: #dc2626;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item.logout-link .material-icons-outlined {
  color: #dc2626;
}
.nav-user-dropdown-container .nav-user-dropdown-menu .nav-dropdown-item.logout-link:hover {
  background: #fef2f2;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.nav-links-list .nav-menu-node {
  position: relative;
}
.nav-links-list .nav-menu-node.active-nav > .main-tier-link {
  color: #009644;
  border-bottom: 2px solid #009644;
  padding-bottom: 8px;
}
.nav-links-list .nav-menu-node .menu-arrow-indicator {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-links-list .nav-menu-node .main-tier-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #202124;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  transition: color 0.2s ease;
}
.nav-links-list .nav-menu-node .main-tier-link:hover {
  color: #009644;
}
.nav-links-list .nav-menu-node.has-dropdown-tier:hover .nested-dropdown-menu {
  display: block;
}
.nav-links-list .nav-menu-node.has-dropdown-tier:hover .menu-arrow-indicator {
  transform: rotate(180deg);
}
.nav-links-list .nested-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 6px;
  border: 1px solid #dadce0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: none;
}
.nav-links-list .nested-dropdown-menu .sub-tier-link {
  display: block;
  padding: 10px 16px;
  color: #5f6368;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav-links-list .nested-dropdown-menu .sub-tier-link:hover {
  background-color: #f8f9fa;
  color: #009644;
}

/* ==========================================================================
   🗺️ FOOTER LAYOUT
   ========================================================================== */
.site-footer {
  margin-top: 60px;
  background-color: white;
  border-top: 1px solid #dadce0;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .footer-content {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
.site-footer .footer-bottom {
  width: 100%;
  max-width: 1200px;
  border-top: 1px solid #dadce0;
  padding-top: 20px;
  text-align: center;
}
.site-footer .footer-bottom p {
  margin: 0;
  color: #5f6368;
  font-size: 14px;
}

/* ==========================================================================
   📱 MOBILE MENU SIDEBAR STYLES
   ========================================================================== */
.header-mobile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-mobile-row .site-logo {
  font-size: 24px;
  font-weight: 700;
  color: #492669;
  text-decoration: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #202124;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.mobile-nav-header {
  display: none;
}

@media (max-width: 767px) {
  .site-header {
    flex-direction: column;
    padding: 15px;
  }
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }
  .public-navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .public-navbar.active {
    right: 0;
  }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dadce0;
  }
  .mobile-nav-header .site-logo {
    font-size: 20px;
    font-weight: 700;
    color: #492669;
  }
  .mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #202124;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-links-container {
    width: 100%;
    padding: 10px 0;
  }
  .nav-links-list {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links-list .nav-menu-node {
    width: 100%;
  }
  .nav-links-list .nav-menu-node .main-tier-link {
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #f8f9fa;
  }
  .nav-links-list .nav-menu-node .nested-dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f8f9fa;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-links-list .nav-menu-node:hover .nested-dropdown-menu, .nav-links-list .nav-menu-node:focus-within .nested-dropdown-menu {
    display: block;
  }
  .nav-links-list .nav-menu-node .sub-tier-link {
    padding: 12px 20px 12px 40px;
    border-bottom: 1px solid #dadce0;
  }
  .nav-auth-actions {
    padding: 20px;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-auth-actions .auth-btn {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-auth-actions .edit-mode-toggle {
    width: 100%;
    justify-content: center;
    margin-right: 0 !important;
    margin-bottom: 10px;
  }
  .nav-user-dropdown-container {
    width: 100%;
  }
  .nav-user-dropdown-container .nav-user-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid #dadce0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav-user-dropdown-container .nav-user-dropdown-menu.show {
    display: block;
  }
  .nav-user-dropdown-container .nav-user-trigger {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    justify-content: center;
  }
  .nav-user-dropdown-container.active .nav-user-dropdown-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  .header-mobile-row {
    width: auto;
  }
  .header-mobile-row .site-logo {
    font-size: 28px;
  }
  .mobile-menu-toggle {
    display: none;
  }
}
.blog-list-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Roboto", sans-serif;
}

.blog-header {
  border-bottom: 2px solid #edf2f7;
  padding-bottom: 15px;
  margin-bottom: 35px;
}

.blog-page-title {
  color: #2d3748;
  font-size: 32px;
  margin: 0;
}

.blog-page-subtitle {
  color: #718096;
  margin: 5px 0 0 0;
  font-size: 16px;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s;
}
.blog-card:hover {
  transform: translateY(-2px);
}

.blog-meta {
  font-size: 12px;
  color: #a0aec0;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  margin: 0 0 10px 0;
  font-size: 22px;
}

.blog-link {
  color: #2b6cb0;
  text-decoration: none;
}
.blog-link:hover {
  text-decoration: underline;
}

.blog-summary {
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 15px 0;
  font-size: 15px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-more {
  color: #3182ce;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
}
.blog-read-more:hover {
  text-decoration: underline;
}

.blog-empty {
  text-align: center;
  color: #a0aec0;
  padding: 60px 0;
  font-style: italic;
}

.blog-article-container {
  max-width: 750px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Roboto", sans-serif;
}

.blog-back-link {
  color: #3182ce;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.blog-back-link:hover {
  text-decoration: underline;
}

.blog-article-header {
  margin-bottom: 35px;
}

.blog-article-title {
  color: #1a202c;
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.blog-article-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #718096;
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
  padding: 10px 0;
}

.blog-highlight {
  background: #f7fafc;
  border-left: 4px solid #4299e1;
  padding: 15px 20px;
  font-style: italic;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  border-radius: 0 4px 4px 0;
}

.blog-rich-text-content {
  color: #2d3748;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.blog-article-footer {
  margin-top: 50px;
  border-top: 2px solid #edf2f7;
  padding-top: 20px;
  text-align: center;
}

.btn-blog-back {
  background: #edf2f7;
  color: #4a5568;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
}
.btn-blog-back:hover {
  background: rgb(219.3461538462, 229.25, 239.1538461538);
}

.auth-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.auth-modal-overlay.show {
  display: flex;
  opacity: 1;
  animation: authModalFadeIn 0.3s ease-out forwards;
}

.auth-modal-glass-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.auth-modal-overlay.show .auth-modal-glass-card {
  transform: translateY(0);
}

.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.auth-modal-close:hover {
  color: #ef4444;
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 30px;
}
.auth-modal-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}
.auth-modal-header p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

.auth-modal-error {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-form-group {
  margin-bottom: 20px;
}
.auth-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
  font-size: 14px;
}
.auth-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s;
  box-sizing: border-box;
  font-family: inherit;
  background: #f8fafc;
}
.auth-form-group input:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.auth-btn-primary {
  width: 100%;
  padding: 14px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 10px;
}
.auth-btn-primary:hover {
  background: #1e293b;
}
.auth-btn-primary:active {
  transform: scale(0.98);
}

@keyframes authModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hub-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hub-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.hub-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.hub-tab {
  padding: 15px 30px;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.hub-tab:hover {
  color: #3b82f6;
}

.hub-tab.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}

.hub-content-section {
  display: none;
}

.hub-content-section.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Layout */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

@media (max-width: 900px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
}
/* Posts */
.post-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  border: 1px solid #f1f5f9;
  position: relative;
}

.post-pinned {
  border-left: 4px solid #f59e0b;
}

.pin-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #f59e0b;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 5px rgba(245, 158, 11, 0.4);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.post-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  object-fit: cover;
  flex-shrink: 0;
}

.post-author {
  font-weight: 700;
  color: #1e293b;
  font-size: 1.1rem;
}

.post-time {
  font-size: 0.85rem;
  color: #94a3b8;
}

.post-body {
  color: #334155;
  line-height: 1.6;
}

.post-actions {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: flex-end;
}

/* Roster Sidebar */
.roster-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.roster-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #1e293b;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.roster-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.roster-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  object-fit: cover;
  flex-shrink: 0;
}

.roster-name {
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

/* Files */
.files-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.file-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.file-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.file-icon {
  font-size: 40px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.file-name {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  word-break: break-all;
}

.file-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.file-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.btn-download {
  background: #eff6ff;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: background 0.2s;
}

.btn-download:hover {
  background: #dbeafe;
}

.btn-delete {
  background: #fef2f2;
  color: #dc2626;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-delete:hover {
  background: #fee2e2;
}

/* Modals */
.hub-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.hub-modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#editor-container {
  height: 250px;
  margin-bottom: 20px;
}

.home-sections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-image-wrapper {
  width: 100%;
  height: 300px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-image-wrapper .section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-image-wrapper .image-placeholder {
  color: #5f6368;
  font-weight: 500;
}

.section-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-content h2 {
  color: #1a73e8;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
}
.section-content .text-block {
  color: #202124;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-card {
    flex-direction: row;
    height: 400px;
  }
  .section-image-wrapper {
    width: 50%;
    height: 100%;
  }
  .section-content {
    width: 50%;
    padding: 50px;
  }
  .section-card.image-right {
    flex-direction: row-reverse;
  }
}
body {
  background-color: #f4f6f9;
  color: #202124;
  font-family: "Roboto", sans-serif;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Roboto", sans-serif;
}

.page-header {
  margin-bottom: 30px;
}

.page-title {
  color: #2c3e50;
  margin: 0 0 10px 0;
  font-size: 32px;
}

.page-subtitle {
  color: #7f8c8d;
  margin: 0;
  font-size: 16px;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fdfdfd;
  border: 1px solid #eee;
}

.contact-info {
  margin-top: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.ql-editor img,
.blog-content img,
.section-content img,
.hub-content-section img:not(.roster-avatar):not(.post-avatar) {
  max-width: 100%;
  height: auto;
}

.ql-editor iframe,
.blog-content iframe,
.section-content iframe,
.hub-content-section iframe {
  max-width: 100%;
}/*# sourceMappingURL=main.css.map */