/* Shared styles for admin listing pages */
.overview-card-gallery,
.overview-card-website,
.overview-card-invitation {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(56, 111, 161, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.overview-card-gallery:hover,
.overview-card-website:hover,
.overview-card-invitation:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(56, 111, 161, 0.18);
}

.overview-card-gallery {
  background: linear-gradient(135deg, #f2f9ff 0%, #e0f0ff 48%, #f6fbff 100%);
  border: 1px solid rgba(44, 137, 199, 0.24);
}

.overview-card-website {
  background: linear-gradient(135deg, #f2fcf9 0%, #e0f8ef 50%, #f5fcfa 100%);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.overview-card-invitation {
  background: linear-gradient(135deg, #fff9ec 0%, #fff3d7 50%, #fffcf5 100%);
  border: 1px solid rgba(210, 135, 45, 0.24);
}

.overview-card-gallery .overview-card-header,
.overview-card-website .overview-card-header,
.overview-card-invitation .overview-card-header {
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(178, 206, 231, 0.4);
  font-weight: 600;
  font-size: 0.94rem;
}

.overview-card-gallery .overview-card-body,
.overview-card-website .overview-card-body,
.overview-card-invitation .overview-card-body {
  padding: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}

.overview-stat {
  display: flex;
  align-items: center;
  gap: 0.68rem;
}

.overview-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.overview-card-gallery .overview-stat-icon {
  background: rgba(44, 137, 199, 0.2);
  color: #0c6dae;
}

.overview-card-website .overview-stat-icon {
  background: rgba(13, 148, 136, 0.22);
  color: #0f766e;
}

.overview-card-invitation .overview-stat-icon {
  background: rgba(210, 135, 45, 0.2);
  color: #a35a13;
}

.overview-stat-value {
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.15;
}

.overview-stat-label {
  font-size: 0.79rem;
  color: #64748b;
}

.album-card,
.website-card,
.invitation-card {
  border: 1px solid #cfe1f2;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.album-card:hover,
.website-card:hover,
.invitation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(56, 111, 161, 0.18) !important;
  border-color: #b8d6ee;
}

.album-card .card-title,
.website-card .card-title,
.invitation-card .card-title {
  color: #103a5d;
  font-weight: 650;
}

.ui-mono-code {
  font-size: 0.8em;
}

.ui-mono-code-sm {
  font-size: 0.75em;
}

/* Pricing */
.pricing-hero {
  background: linear-gradient(135deg, rgba(82, 164, 223, 0.14), rgba(235, 246, 255, 0.74));
  border-radius: 20px;
  padding: 2.3rem;
  margin-bottom: 2.2rem;
  border: 1px solid rgba(153, 196, 226, 0.52);
  box-shadow: 0 10px 24px rgba(56, 111, 161, 0.12);
}

.pricing-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border: 1px solid rgba(168, 202, 229, 0.56);
  height: 100%;
  box-shadow: 0 10px 24px rgba(56, 111, 161, 0.1);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 255, 0.82));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(56, 111, 161, 0.16);
}

.pricing-card .card-header {
  padding: 1.35rem;
  font-weight: 600;
  border: none;
}

.pricing-card-free .card-header { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); color: #475569; }
.pricing-card-pro .card-header { background: linear-gradient(135deg, #edf6ff, #d6ecff); color: #0f5f9e; }
.pricing-card-max .card-header { background: linear-gradient(135deg, #2d9de7, #1779c4); color: #fff; }
.pricing-card-max { border-color: rgba(78, 156, 214, 0.58); }

.pricing-card-max .badge-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  padding: 0.35rem 0.6rem;
}

.pricing-card .card-body { padding: 1.35rem; }
.pricing-card .price { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-card .list-features { list-style: none; padding: 0; margin: 0 0 1.25rem 0; }
.pricing-card .list-features li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; }
.pricing-card .list-features li:before {
  content: "\F26B";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 0.95rem;
}

.pricing-cta { border-radius: 12px; font-weight: 600; padding: 0.6rem 1.25rem; }
.pricing-cta { transition: transform 0.18s ease, box-shadow 0.2s ease; }
.pricing-cta:hover { transform: translateY(-1px); }
.pricing-footer-note { font-size: 0.9rem; color: #64748b; max-width: 560px; margin: 2rem auto 0; }

.pricing-contact,
.pricing-bank {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(235, 246, 255, 0.58));
  border: 1px solid rgba(168, 202, 229, 0.56);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(56, 111, 161, 0.1);
}

.pricing-contact {
  padding: 1.2rem 1rem;
  margin-top: 2.4rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-contact .btn-zalo,
.pricing-contact .btn-messenger {
  color: #fff;
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-contact .btn-zalo { background: #0068FF; }
.pricing-contact .btn-zalo:hover { background: #0052cc; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 104, 255, 0.35); }
.pricing-contact .btn-messenger { background: linear-gradient(135deg, #0084ff, #00c6ff); }
.pricing-contact .btn-messenger:hover { background: linear-gradient(135deg, #0066cc, #00a8e0); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 132, 255, 0.35); }

.pricing-bank {
  padding: 1.2rem 1rem;
  margin-top: 2rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-bank .qr-code {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.pricing-bank .bank-info {
  font-size: 0.9rem;
  text-align: left;
  max-width: 240px;
  margin: 0 auto;
}

.pricing-bank .bank-info .row-item { margin-bottom: 0.35rem; }
.pricing-bank .bank-info strong { min-width: 5rem; display: inline-block; }

.pricing-plan-icon {
  font-size: 1.5rem;
}

.pricing-zalo-icon {
  width: 22px;
  height: 22px;
}

.ui-empty-icon-xl {
  font-size: 4rem;
  color: #bfd2e6;
}

.ui-empty-icon-lg {
  font-size: 3rem;
  color: #bfd2e6;
}

.ui-empty-icon-warm {
  color: #f3d58a;
}

.ui-thumb-200 {
  height: 200px;
  object-fit: cover;
}

.ui-thumb-250 {
  height: 250px;
  object-fit: cover;
}

.ui-thumb-120 {
  height: 120px;
  object-fit: cover;
}

.ui-placeholder-thumb {
  background: #f1f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-code-line {
  font-size: 0.8em;
}

.ui-code-line-sm {
  font-size: 0.75em;
}

.invitation-guest-list-body {
  max-height: 420px;
  overflow-y: auto;
}

.invitation-guest-link {
  max-width: 350px;
}

.invitation-copy-link-btn {
  padding: 1px 6px;
}

.ui-required-indicator {
  color: #dc3545;
  font-size: 0.55em;
  vertical-align: top;
}

.website-preview-card {
  top: 1rem;
}

.website-preview-iframe {
  border: none;
}

.gallery-filter-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 245, 255, 0.68));
  border-radius: 14px;
  border: 1px solid rgba(176, 206, 231, 0.44);
  box-shadow: 0 10px 24px rgba(56, 111, 161, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-filter-form-section {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(68, 145, 202, 0.24);
  border-radius: 12px;
  padding: 0.95rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-filter-form-section:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(68, 145, 202, 0.42);
  box-shadow: 0 8px 18px rgba(56, 111, 161, 0.12);
}

.gallery-filter-scroll {
  max-height: 300px;
  overflow-y: auto;
}

.gallery-filter-heading {
  color: #103a5d;
  font-size: 0.95rem;
  font-weight: 620;
}

.gallery-filter-form-section .form-check-input:checked {
  background-color: #167bc6;
  border-color: #167bc6;
}

.gallery-filter-form-section .form-check-input:focus {
  border-color: #167bc6;
  box-shadow: 0 0 0 0.2rem rgba(22, 123, 198, 0.2);
}

.gallery-filter-form-section .form-check-label {
  color: #103a5d;
}

.gallery-filter-form-section .badge.bg-secondary {
  background: #5d7895 !important;
}

.gallery-filter-form-section .badge.bg-warning {
  color: #1f2937;
}

.gallery-filter-form-section .badge.bg-info {
  background: #0ea5c6 !important;
}

.album-access-card {
  border-color: #cadff1;
}

.album-password-input[type='password'] {
  -webkit-text-security: disc;
}

.album-action-group {
  gap: 0.65rem;
}

.album-image-list {
  max-height: 60vh;
  overflow-y: auto;
  white-space: pre-wrap;
  line-height: 1.8;
}

.album-image-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.66));
  border: 1px solid #cddff0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.album-image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(56, 111, 161, 0.16);
  border-color: #b9d7ee;
}

.album-image-card .image-card-thumb {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.album-image-card .image-card-thumb img {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.album-image-card:hover .image-card-thumb img {
  transform: scale(1.04);
}

.album-image-card .image-info-overlay {
  background: rgba(10, 57, 93, 0.4);
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.album-image-card:hover .image-info-overlay {
  opacity: 0.88;
}

.album-comments-list {
  max-height: 120px;
  overflow-y: auto;
}

.album-empty-card {
  max-width: 540px;
  margin: 0 auto;
  border: 1px dashed #bdd5ea;
}

.album-rating-star-btn {
  cursor: pointer;
  font-size: 1.2rem;
  text-decoration: none;
}

.album-rating-clear-btn {
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.ui-card-rounded-hidden {
  border-radius: 16px;
  overflow: hidden;
}

.public-profile-avatar {
  width: 80px;
  height: 80px;
}

.public-profile-avatar i {
  font-size: 2.5rem;
}

.ui-text-preline {
  white-space: pre-line;
}

.public-website-header {
  background: rgba(13, 148, 136, 0.08);
  border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.public-website-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(13, 148, 136, 0.12);
  color: #0d9488;
}
