/**
 * AB Event Portal - No Access Page Styles
 *
 * @link       https://trywebtec.com
 * @since      1.0.0
 * @package    Ab_Event_Portal
 */
.ab-no-access-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  text-align: center;
  animation: slideUp 0.6s ease-out;
}
.ab-no-access-container .ab-no-access-icon {
  font-size: 80px;
  color: #dc3545;
  margin-bottom: 20px;
  display: inline-block;
}
.ab-no-access-container .ab-no-access-icon svg {
  width: 80px;
  height: 80px;
}
.ab-no-access-container .ab-no-access-icon i {
  margin-right: 8px;
}
.ab-no-access-container .ab-no-access-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.ab-no-access-container .ab-no-access-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.ab-no-access-container .ab-no-access-details {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  padding: 15px 20px;
  text-align: left;
  margin-bottom: 30px;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
}
.ab-no-access-container .ab-no-access-details ul {
  margin: 0;
  padding-left: 20px;
}
.ab-no-access-container .ab-no-access-details li {
  margin-bottom: 8px;
}
.ab-no-access-container .ab-no-access-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.ab-no-access-container .ab-no-access-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  min-width: 180px;
  will-change: transform, box-shadow;
}
.ab-no-access-container .ab-no-access-btn:hover {
  text-decoration: none;
}
.ab-no-access-container .ab-no-access-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.ab-no-access-container .ab-no-access-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  color: #ffffff;
}
.ab-no-access-container .ab-no-access-btn-secondary {
  background: #ffffff;
  color: #667eea;
  border: 2px solid #667eea;
}
.ab-no-access-container .ab-no-access-btn-secondary:hover {
  background: #f0f0f0;
  color: #667eea;
}
.ab-no-access-container .ab-no-access-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
  font-size: 13px;
  color: #999;
}
.ab-no-access-container .ab-no-access-footer a {
  color: #667eea;
  text-decoration: none;
}
.ab-no-access-container .ab-no-access-footer a:hover {
  text-decoration: underline;
}

/* Client portal navigation and panel */
.ab-client-dashboard {
  padding: 12px 0;
}
.ab-client-dashboard .ab-portal-header {
  margin-bottom: 0.75rem;
}
.ab-client-dashboard .ab-portal-user-card,
.ab-client-dashboard .ab-portal-upcoming-card,
.ab-client-dashboard .ab-portal-panel,
.ab-client-dashboard .ab-portal-nav {
  border-radius: 12px;
}
.ab-client-dashboard .ab-portal-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem;
}
.ab-client-dashboard .ab-portal-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-weight: 700;
}
.ab-client-dashboard .ab-portal-kicker {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ab-client-dashboard .ab-portal-user-name {
  margin: 2px 0;
  font-size: 1.15rem;
  line-height: 1.2;
}
.ab-client-dashboard .ab-portal-user-email {
  margin: 0;
  color: #6b7280;
  font-size: 0.85rem;
}
.ab-client-dashboard .ab-portal-upcoming-card {
  position: relative;
  padding: 0.85rem;
  border: 1px solid #dbeafe;
}
.ab-client-dashboard .ab-portal-upcoming-card::before {
  content: "UPCOMING";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.ab-client-dashboard .ab-portal-upcoming-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.ab-client-dashboard .ab-portal-upcoming-note {
  margin: 0 0 10px;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.35;
}
.ab-client-dashboard .ab-portal-event-state {
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.ab-client-dashboard .ab-portal-countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.ab-client-dashboard .ab-portal-countdown span {
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
}
.ab-client-dashboard .ab-portal-upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.ab-client-dashboard .ab-portal-event-item {
  border: 1px solid #e5edff;
  border-radius: 10px;
  background: #f8fbff;
  padding: 8px 10px;
}
.ab-client-dashboard .ab-portal-event-item span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 2px;
}
.ab-client-dashboard .ab-portal-event-item strong {
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 600;
}
.ab-client-dashboard .ab-portal-nav {
  background: #0f172a;
  padding: 8px;
}
.ab-client-dashboard .ab-portal-nav-link {
  color: #cbd5e1;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.87rem;
}
.ab-client-dashboard .ab-portal-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.ab-client-dashboard .ab-portal-nav-link.is-active, .ab-client-dashboard .ab-portal-nav-link.active {
  color: #fff;
  background: #2563eb;
}
.ab-client-dashboard .ab-portal-panel {
  padding: 0.9rem;
}
.ab-client-dashboard .ab-portal-panel-title {
  margin: 0;
  font-size: 1.25rem;
}
.ab-client-dashboard .ab-portal-panel-subtitle {
  margin: 8px 0 12px;
  color: #64748b;
}
.ab-client-dashboard .ab-portal-content-placeholder {
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 12px;
  color: #64748b;
  background: #f8fafc;
}
@media (max-width: 991px) {
  .ab-client-dashboard .ab-portal-upcoming-title {
    max-width: 100%;
  }
  .ab-client-dashboard .ab-portal-upcoming-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .ab-no-access-container {
    padding: 40px 25px;
    margin: 20px;
  }
  .ab-no-access-title {
    font-size: 24px;
  }
  .ab-no-access-message {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .ab-no-access-icon {
    font-size: 60px;
  }
  .ab-no-access-icon svg {
    width: 60px;
    height: 60px;
  }
  .ab-no-access-actions {
    flex-direction: column;
  }
  .ab-no-access-btn {
    width: 100%;
    min-width: auto;
  }
}
@media print {
  .ab-no-access-container {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  .ab-no-access-actions {
    display: none;
  }
}
.abe_client_dashboard .form-label {
  font-weight: 700;
  margin-bottom: 8px;
}
.abe_client_dashboard .form-control {
  border-radius: 16px;
  padding: 13px 15px;
  border-color: rgba(23, 32, 51, 0.12);
  min-height: 52px;
}
.abe_client_dashboard .form-control:focus {
  border-color: #2f6fed;
  box-shadow: 0 0 0 0.2rem rgba(47, 111, 237, 0.12);
}

.abe_dashboard_card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.05);
}

.abe_dashboard_sidebar {
  background: linear-gradient(180deg, #172033, #25395f);
  color: #fff;
  padding: 30px 22px;
  height: 100%;
  min-height: 700px;
}

.abe_logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 35px;
}

.abe_user_box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 35px;
  text-align: center;
}
.abe_user_box h5 {
  color: #fff !important;
  margin-bottom: 4px;
  font-weight: 700;
}
.abe_user_box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.abe_avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  font-weight: 700;
}

.abe_dashboard_nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abe_dashboard_nav .abe_nav_btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: 0.2s ease;
  text-align: left;
  text-decoration: none;
}
.abe_dashboard_nav .abe_nav_btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.abe_dashboard_nav .abe_nav_btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.abe_dashboard_content {
  padding: 35px;
}
.abe_dashboard_content .ab-empty-state {
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.abe_dashboard_content .ab-empty-state-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  background: #dbeafe;
}
.abe_dashboard_content .ab-empty-state-icon svg {
  width: 24px;
  height: 24px;
}
.abe_dashboard_content .ab-empty-state-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}
.abe_dashboard_content .ab-empty-state-text {
  margin: 0 auto 0.85rem;
  max-width: 520px;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
}
.abe_dashboard_content .ab-empty-state-actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.abe_dashboard_content .ab-empty-state-actions a {
  text-decoration: none;
}

.abe_dashboard_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.abe_dashboard_header h2 {
  font-weight: 800;
  margin-bottom: 4px;
}
.abe_dashboard_header p {
  margin-bottom: 0;
  color: #6d7481;
}

.abe_event_card {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.04);
  height: 100%;
}
.abe_event_card h4 {
  font-size: 20px !important;
  margin-bottom: 0px;
}
.abe_event_card p {
  color: #6d7481;
  margin-bottom: 0;
}

.abe_event_top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.abe_status_badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.abe_status_confirmed {
  background: rgba(31, 169, 113, 0.14);
  color: #0f8f5b;
}

.abe_status_pending {
  background: rgba(245, 158, 11, 0.14);
  color: #a16207;
}

.abe_event_meta_item {
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
  padding: 12px 0;
}
.abe_event_meta_item small {
  display: block;
  color: #6d7481;
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1;
}
.abe_event_meta_item strong {
  font-size: 15px;
}

.abe_btn {
  color: #1f55bf;
  border-radius: 30px !important;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none !important;
}
.abe_btn:hover {
  background: #1f55bf;
  border-color: #1f55bf;
  color: #fff;
}
.abe_btn.abe_btn_primary {
  background: #2f6fed;
  border-color: #2f6fed;
  color: #fff;
}
.abe_btn.abe_btn_primary:hover {
  background: #1f55bf;
  border-color: #1f55bf;
  color: #fff;
}

.abe_profile_card {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(23, 32, 51, 0.04);
}
.abe_profile_card h4 {
  font-weight: 800;
  margin-bottom: 6px;
}
.abe_profile_card p {
  color: #6d7481;
  margin-bottom: 30px;
}

.abe_logout_box {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(23, 32, 51, 0.04);
}
.abe_logout_box h3 {
  font-weight: 800;
  margin-bottom: 10px;
}
.abe_logout_box p {
  color: #6d7481;
  margin-bottom: 25px;
}

.abe_logout_icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

@media (max-width: 991px) {
  .abe_dashboard_sidebar {
    min-height: auto;
  }
  .abe_dashboard_content {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .abe_event_meta {
    grid-template-columns: 1fr;
  }
  .abe_dashboard_content {
    padding: 20px;
  }
  .abe_profile_card,
  .abe_logout_box {
    padding: 24px;
  }
}
.abe_page_header .abe_back_link {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--abe-blue-dark);
  text-decoration: none;
  font-weight: 700;
}
.abe_page_header h2 {
  font-size: 24px !important;
  margin-bottom: 4px;
}
.abe_page_header p {
  font-size: 14px;
}

.abe_inner_tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}
.abe_inner_tabs .abe_inner_tab_btn {
  font-size: 14px;
  border: 0;
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: #6D7481;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  transition: 0.2s ease;
  text-decoration: none;
  line-height: 1;
}
.abe_inner_tabs .abe_inner_tab_btn:hover, .abe_inner_tabs .abe_inner_tab_btn.active {
  background: #2F6FED;
  border-color: #2F6FED;
  color: #fff;
}

.abe_event_summary_card {
  background: linear-gradient(135deg, #172033, #25395f);
  color: #fff;
  border-radius: 26px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.12);
}
.abe_event_summary_card h3 {
  font-size: 24px !important;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff !important;
}
.abe_event_summary_card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}
.abe_countdown_box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 18px;
}
.abe_countdown_box .abe_countdown_number {
  color: #8fb1ff;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}
.abe_countdown_box .abe_countdown_label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.abe_info_card {
  background: #fff;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(23, 32, 51, 0.04);
  height: 100%;
}
.abe_info_card .abe_section_header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}
.abe_info_card .abe_section_header .abe_icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(47, 111, 237, 0.08);
  color: #2f6fed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  flex: 0 0 auto;
}
.abe_info_card .abe_section_header h4 {
  font-weight: 800;
  margin-bottom: 3px;
}
.abe_info_card .abe_section_header p {
  color: #6D7481;
  margin-bottom: 0;
  font-size: 14px;
}
.abe_info_card .abe_detail_item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}
.abe_info_card .abe_detail_item small {
  display: block;
  color: #6d7481;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1;
}
.abe_info_card .abe_timeline_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 10px;
}
.abe_info_card .abe_timeline_item .abe_time_pill {
  min-width: 88px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.08);
  color: #1F55BF;
  font-weight: 800;
  padding: 9px 12px;
  text-align: center;
  font-size: 13px;
}

.abe_document_card {
  box-shadow: 0 0px 7px -1px rgba(21, 21, 21, 0.15);
  padding: 20px;
  border-radius: 8px;
}
.abe_document_card .abe_document_upload_label {
  font-size: 14px;
}
.abe_document_card .abe_document_upload_help {
  font-size: 12px;
}

.abe_single_event_gallery_upload {
  border: 2px dashed rgba(197, 155, 95, 0.45);
  background: rgba(197, 155, 95, 0.07);
  border-radius: 22px;
  padding: 36px;
  text-align: center;
}

.abep-gallery-upload-notice {
  display: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
}

.abep-gallery-upload-notice.is-success {
  display: block;
  background: #ecfdf3;
  border-color: #86efac;
  color: #166534;
}

.abep-gallery-upload-notice.is-error {
  display: block;
  background: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.abep-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.abep-gallery-item {
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(21, 21, 21, 0.04);
}

.abep-gallery-preview {
  position: relative;
  aspect-ratio: 16/11;
  background: #f5f1e8;
  overflow: hidden;
}
.abep-gallery-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.abep-gallery-preview video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.abep-gallery-meta {
  padding: 14px;
  border-top: 1px solid rgba(21, 21, 21, 0.06);
}

.abep-gallery-name {
  font-size: 14px;
  margin-bottom: 10px;
}

.abep-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abep-gallery-actions .btn {
  padding-left: 12px;
  padding-right: 12px;
}

.abep-gallery-upload-form.dropzone {
  border: 2px dashed rgba(197, 155, 95, 0.45);
  background: linear-gradient(180deg, rgba(197, 155, 95, 0.08), rgba(197, 155, 95, 0.03));
  border-radius: 22px;
  padding: 22px;
  min-height: 240px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.abep-gallery-upload-form.dropzone.dz-drag-hover {
  border-color: #a57e44;
  background: rgba(197, 155, 95, 0.14);
}

.abep-gallery-upload-form .dz-message {
  margin: 30px 0 20px;
  color: #4e4334;
  font-weight: 600;
  text-align: center;
  order: -1;
}
.abep-gallery-upload-form .dz-message i {
  font-size: 42px;
  color: #a57e44;
  margin-bottom: 10px;
}
.abep-gallery-upload-form .dz-preview {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(21, 21, 21, 0.08);
}
.abep-gallery-upload-form .dz-preview .dz-image {
  border-radius: 16px;
  width: 100%;
  height: 160px;
  background: #f5f1e8;
}
.abep-gallery-upload-form .dz-preview .dz-details {
  padding: 1.2em 1em;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
}
.abep-gallery-upload-form .dz-preview .dz-remove {
  color: #a57e44;
  font-weight: 700;
  margin-top: 10px;
}
.abep-gallery-upload-form .dz-preview.dz-error .dz-error-message {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .abep-gallery-grid {
    grid-template-columns: 1fr;
  }
}
#abep-gallery-dropzone {
  min-height: 250px;
  border: 2px dashed #e3c7a4;
  border-radius: 28px;
  background: #fffdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}
#abep-gallery-dropzone:hover {
  background: #fff8ef;
  border-color: #b18448;
}
#abep-gallery-dropzone .dz-message {
  margin: 0;
  text-align: center;
}
#abep-gallery-dropzone .abep-upload-icon {
  font-size: 44px;
  color: #a67a3f;
  line-height: 1;
  margin-bottom: 26px;
}
#abep-gallery-dropzone h3 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 700;
  color: #443a2f;
}
#abep-gallery-dropzone p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #555;
}

#abep-gallery-dropzone.dz-drag-hover {
  background: #fff8ef;
  border-color: #b18448;
}

.abe_single_event_btn_soft {
  background-color: rgba(197, 155, 95, 0.12) !important;
  color: #a57e44 !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 8px 10px !important;
}

.max-w-400 {
  max-width: 400px;
}
@media (max-width: 767px) {
  .max-w-400 {
    max-width: 100%;
  }
}

.btn {
  border-radius: 30px !important;
}

.btn-sm {
  padding: 0.25rem 0.5rem !important;
}

.abe_single_event_chat_box {
  height: 430px;
  overflow-y: auto;
  background: #faf9f6;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
}
.abe_single_event_chat_box .is_other {
  justify-content: start;
  margin-right: auto;
}
.abe_single_event_chat_box .is_me {
  margin-left: auto;
}
.abe_single_event_chat_box .is_me .msg-meta {
  justify-content: end;
}
.abe_single_event_chat_box .user_status {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
}
.abe_single_event_chat_box .user_status.active {
  background: #22c55e;
}
.abe_single_event_chat_box .user_status.away {
  background: #f59e0b;
}
.abe_single_event_chat_box .user_status.offline {
  background: #94a3b8;
}
.abe_single_event_chat_box .abe_message_me,
.abe_single_event_chat_box .abe_message_other {
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
}
.abe_single_event_chat_box .abe_message_other {
  color: #0f172a;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.08);
}
.abe_single_event_chat_box .abe_message_me {
  background: #2e6fec;
  color: #fff;
  margin-left: auto;
}
.abe_single_event_chat_box span.small {
  font-size: 11px;
  color: #6d7481;
  margin-left: 8px;
}

.abe_single_event_btn {
  background: #2e6fec !important;
  border-color: #2e6fec !important;
  color: #fff;
  border-radius: 0 16px 16px 0 !important;
  padding: 10px 18px !important;
}

.abe_single_event_btn:hover {
  background: #a57e44;
  border-color: #a57e44;
  color: #fff;
}

/* Typing indicator (only) */
@keyframes abe-typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.abe_typing_indicator {
  margin-bottom: 0.75rem;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.typing-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  opacity: 0.6;
  transform: translateY(0);
  animation: abe-typing 1s infinite ease-in-out;
}
.typing-dots span:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-dots span:nth-child(3) {
  animation-delay: 0.3s;
}

.user-typing-indicator {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06);
  background: #22c55e;
}

.abe_loader {
  position: absolute;
  height: 100%;
  background: #FAF9F6;
  width: 100%;
  z-index: 9;
  border-radius: 8px;
}

.abep-login__box h2 {
  margin: 0 0 10px;
  text-align: center;
  color: #333;
}
.abep-login__box p {
  text-align: center;
  color: #777;
  margin-bottom: 25px;
}
.abep-login__group {
  margin-bottom: 18px;
}
.abep-login__group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}
.abep-login__group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
}
.abep-login__group input:focus {
  outline: none;
  border-color: #2271b1;
}
.abep-login__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.abep-login__options a {
  color: #2271b1;
  text-decoration: none;
}
.abep-login__options a:hover {
  text-decoration: underline;
}
.abep-login__button {
  width: 100%;
  padding: 12px;
  background: #2271b1;
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.abep-login__button:hover {
  background: #135e96;
}
.abep-login__error {
  margin-bottom: 15px;
  color: #dc3232;
  font-size: 14px;
  text-align: center;
}
.abep-login__success {
  margin-bottom: 15px;
  color: #46b450;
  font-size: 14px;
  text-align: center;
}

/*# sourceMappingURL=ab-event-portal-public.css.map */