/* ---------------customer list ------------------- */

/* Page head */
.page-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0
}

.page-left h3 {
    margin: 0;
    font-weight: 600
}

.back-link {
    display: inline-block;
    margin-top: 6px;
    color: #6b7280;
    text-decoration: none
}

/* Add button */
.btn-add {
    background: #3aa900;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 16px;
}
.btn-add i {
    font-size: 20px;
}


/* KPI */
.kpi {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .04)
}

.kpi-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eaf6e6;
    color: #3aa900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.kpi-label {
    margin-top: 10px;
    color: #6b7280;
    font-size: 13px
}

.kpi-val {
    font-size: 22px;
    font-weight: 700
}

.kpi-trend {
    font-size: 13px
}

.kpi-trend.up {
    color: #16a34a
}

.kpi-trend.down {
    color: #dc2626
}

/* Card */
.card-wrap {
    background: #fff;
    border-radius: 14px;
    padding: 16px
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.search {
    position: relative
}

.search i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af
}

.search input {
    padding: 8px 49px 8px 32px;
    border-radius: 6px;
    border: 1px solid #77797b;
}

/* Table */
.tbl th {
    font-size: 14px;
    color: #6b7280;
}

.tbl th i {
    font-size: 10px;
    margin-left: 4px
}

.tbl td {
    font-size: 14px;
    vertical-align: middle
}

.status {
    color: #16a34a;
    font-weight: 500
}

.status .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    margin-right: 6px
}

/* Footer / Pagination */
.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 14px;
    color: #6b7280;
}

.pagination-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-btn {
    min-width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    color: #374151;
}

.page-btn.active {
    border-color: #3aa900;
    color: #3aa900;
    font-weight: 600;
}

.page-text {
       margin-left: 3px;
    color: #6b7280;
    border-radius: 6px;
    border: 1px solid #d0d5dd;
    background: var(--Grey-4, #F3F4F6);
    padding: 5px;
}


/* Scrollable table body */
.table-scroll {
    max-height: 420px;          /* adjust if needed */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Keep header visible while scrolling (nice UX) */
.table-scroll thead th {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 2;
}

/* Smooth scrollbar (optional, clean look) */
.table-scroll::-webkit-scrollbar {
    width: 6px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.table-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.table-link {
    color: #111827;

    text-decoration: none;
}







/* ======================================================== */



/* ---------------create-customer ------------------- */


/* Page subtitle */
.page-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 6px;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    max-width: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* Form Title */
.form-title {
    font-weight: 600;
    margin-bottom: 6px;
}

/* Required note */
.required-note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 20px;
}

.required-star {
    color: red;
}

.optional-text {
    color: #6b7280;
    font-size: 13px;
}

/* Form Labels */
.form-label {
    font-weight: 500;
    color: #374151;
}

/* Inputs */
.form-control {
    height: 44px;
    border-radius: 8px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 28px;
}

/* Buttons */
.btn-reset {
    background: #fff;
    border: 1px solid #3aa900;
    color: #3aa900;
    padding: 10px 20px;
    border-radius: 24px;
}

.btn-submit {
    background: #3aa900;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 24px;
}

/* ======================================================== */


/* ---------------view-customer------------------- */


/* View page header */
.view-head .action-buttons {
    display: flex;
    gap: 12px;
}

/* Outline buttons */
.btn-outline-danger {
    background: #fff;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 10px 18px;
    border-radius: 999px;
}

.btn-outline-green {
    background: #fff;
    border: 1px solid #6bbf3a;
    color: #3aa900;
    padding: 10px 18px;
    border-radius: 999px;
}

/* User basic details */
.manager-basic-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.section-title {
    /* font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px; */
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8e8e8cc;
}

.manager-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* MAIN LAYOUT */
.manager-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.manager-info {
    display: flex;
    gap: 36px;
}

.info-item {
    /* display: flex;
    gap: 8px;
    min-width: 180px; */
        display: inline-flex;
    gap: 8px;
    min-width: 160px;
}

.info-item i {
    font-size: 16px;
    color: #9ca3af;
}

.info-item span {
    font-size: 12px;
    color: #6b7280;
}

.info-item p {
        font-size: 14px;
    font-weight: 500;
    margin: 10px 0px 0px;
}

/* RIGHT */

.venues-managed-wrapper {
    margin-top: 0px;
}

/* Heading */
.venues-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 10px;
}

.venues-managed {
    display: flex;
    gap: 16px;
}

.venue-card {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 14px;
    width: 260px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
}

.venue-card img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.venue-info small.city {
    font-size: 11px;
    color: #9ca3af;
}

.venue-info h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 2px 0 8px;
}

.venue-meta {
    display: flex;
    gap: 18px;
}

.venue-meta span {
    font-size: 11px;
    color: #6b7280;
}

.venue-meta p {
    font-size: 12px;
    margin: 0;
}

.status-pill {
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
}

.status-pill.active {
    /* background: #e7f5e8; */
    color: #15803d;
}

.menu-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #9ca3af;
    cursor: pointer;
}



/* ===============================
   SEARCH INPUT (ICON FIX)
================================ */

.booking-history-card .search-box {
  position: relative;
}

.booking-history-card .search-box input {
  height: 38px;
  padding-left: 38px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  font-size: 14px;
}

.booking-history-card .search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #667085;
}

/* ===============================
   FILTER BUTTONS (ALL BOOKINGS ETC)
================================ */

.filter-pill {
  height: 36px;
  padding: 0 14px;
  border-radius: 18px;
  background: #f2f4f7;
  color: #475467;
  font-size: 13px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-pill.active {
  background: #2fb344; /* exact green */
  color: #fff;
}

.filter-pill i {
  font-size: 15px;
}

/* ===============================
   CLEAR FILTER BUTTON
================================ */

.filter-pill.clear {
  background: #f9fafb;
  color: #475467;
}

.filter-pill.clear i {
  font-size: 16px;
  color: #667085;
}

/* ===============================
   TABLE HEADER DROPDOWN ICON
================================ */

.booking-table thead th {
  position: relative;
  padding-right: 20px;
}

.booking-table thead th::after {
  
  font-family: "remixicon";
  font-size: 14px;
  color: #98a2b3;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===============================
   TIME SLOT BADGE (SHAPE FIX)
================================ */

.timeslot-pill {
  background: #eef2ff;
  color: #4f46e5;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

/* ===============================
   STATUS PILLS (EXACT COLORS)
================================ */

.status-pill {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.status-pill.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

.status-pill.paid,
.status-pill.success {
  background: #dcfce7;
  color: #15803d;
}

.status-pill.refunded {
  background: #e0f2fe;
  color: #0284c7;
}

.status-pill.pending {
  background: #fef3c7;
  color: #d97706;
}

.status-pill.expired {
  background: #fee2e2;
  color: #dc2626;
}

/* ===============================
   PAGINATION BUTTON SHAPE
================================ */

.page-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #d0d5dd;
  background: #fff;
  font-size: 14px;
  color: #344054;
  background: var(--Grey-4, #F3F4F6);
}

.page-btn.active {
  border-color: #3b82f6;
  color: #3b82f6;
  font-weight: 600;
}


/* =================================================== */


/* ---------------  booking-orderview ------------------- */

.page-head {
    margin-top: 20px;
}

.page-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.back-link {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}

.btn-delete {
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 14px;
}

.detail-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.payment-details-card {
    margin-bottom: 0;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
}

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 14px 0 18px;
}

.detail-grid .row {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

.detail-grid .row:last-child {
    border-bottom: none;
}

.label {
    font-size: 14px;
    color: #6b7280;
}

.value {
    font-size: 14px;
    color: #111827;
}

.status-pill {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 14px;
    font-weight: 500;
}

.status-pill.pending {
    background: #fff3cd;
    color: #f59e0b;
}

.payment-link {
    font-size: 14px;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.payment-link:hover {
    color: #16a34a;
}
.payment-link i {
    color: inherit;
    font-size: 1.1em;
}

.total-row .label {
    font-weight: 500;
}

.total-amount {
    font-size: 16px;
    font-weight: 700;
}


/* ======================================================== */


/* --------------- create-an-admin ------------------- */


/* Permissions Card */
.form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Title & subtitle */
.form-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.permission-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 0;
}

/* Top right actions */
.permission-actions a {
    font-size: 14px;
    text-decoration: none;
    margin-left: 16px;
}

.permission-actions .reset-link {
    color: #9ca3af;
}

.permission-actions .select-all-link {
    color: #4CAF50;
    font-weight: 500;
}

/* Permissions table */
.permission-table {
    margin-top: 12px;
    border-collapse: separate;
    border-spacing: 0;
}

.permission-table thead th {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.permission-table tbody td {
    font-size: 14px;
    color: #1f2937;
    padding: 14px 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Checkbox alignment */
.permission-table td:not(:first-child),
.permission-table th:not(:first-child) {
    text-align: center;
}

/* Checkbox style */
.permission-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4CAF50;
}

/* Dash (-) style */
.permission-table .dash {
    color: #9ca3af;
    font-size: 16px;
}

/* Footer buttons */
.permission-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
}

/* Cancel button */
.btn-cancel {
    background: #ffffff;
    border: 1px solid #65c466;
    color: #2f8f2f;
    padding: 10px 26px;
    border-radius: 24px;
    font-size: 14px;
}

/* Update button */
.btn-submit {
    background: #4CAF50;
    border: none;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 24px;
    font-size: 14px;
}

.permission-card {
    margin-bottom: 140px;
}


/* ======================================================== */


/* --------------- view-manager ------------------- */

.account-info-card {
    margin-bottom: 140px;
}


/* ======================================================== */

/* --------------- master-configuration-cities ------------------- */


/* Tabs */
.config-tabs {
  border-bottom: 1px solid #e5e7eb;
}
.config-tabs .nav-link {
  color: #6b7280;
  padding: 12px 18px;
}
.config-tabs .nav-link.active {
  color: #3aa900;
  border-bottom: 3px solid #3aa900;
  font-weight: 500;
}

/* Card */
.city-card {
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* Search */
.search-box {
  position: relative;
}
.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}
.search-box input {
  padding: 6px 12px 6px 34px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

/* Filters */
.filters {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}
.filter-pill {
  background: #f3f4f6;
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}
.filter-pill.active {
  background: #3aa900;
  color: #fff;
}

/* Status pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-pill.active {
  color: #000;
}
.status-pill.active .dot {
  background: #16a34a;
}
.status-pill.inactive {
  color: #000;
}
.status-pill.inactive .dot {
  background: #f59e0b;
}

/* Actions */
.action {
  margin-right: 12px;
  font-size: 14px;
  text-decoration: none;
}
.action.edit { color: #2563eb; }
.action.delete { color: #dc2626; }

/* Modal */
.city-modal {
  border-radius: 16px;
  padding: 10px;
}
.upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  color: #6b7280;
}

/* Modal buttons – reversed hover */
.btn-green {
  background: #3aa900;
  color: #ffffff;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #3aa900;
}

/* Hover = reverse */
.btn-green:hover {
  background: #2563eb;
  color: #ffffff;
  border: 1px solid #3aa900;
}

/* ===============================
   OUTLINE GREEN BUTTON
================================ */
.btn-outline-green {
  background: #ffffff;
  color: #3aa900;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #3aa900;
}

/* Hover = reverse */
.btn-outline-green:hover {
  background: #3aa900;
  color: #ffffff;
}


.btn-outline-red {
    background: #ffffff;
    color: #dc2626;
    height: 44px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #dc2626;
}

.btn-outline-red:hover {
  background: #dc2626;
  color: #ffffff;
 
}




/* ===============================
   MODAL FOOTER ALIGNMENT
================================ */
.modal-footer {
  border-top: none;
  padding-top: 20px;
  gap: 16px;
}

.city-config-card {
    margin-bottom: 140px;
}


/* ======================================================== */

/* --------------- master-configuration-sportscategories ------------------- */


.sport-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.image-stack {
  display: flex;
  align-items: center;
}

.image-stack img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  margin-right: -6px;
  border: 2px solid #fff;
}

.image-stack .more {
  background: #f3f4f6;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  margin-left: 8px;
}

.icon-row i {
  font-size: 20px;
  margin-right: 12px;
  cursor: pointer;
  color: #6b7280;
}

.icon-row i:hover {
  color: #3aa900;
}

/* ======================================================== */

/* --------------- reports overview ------------------- */


.reports-overview {
    background: linear-gradient(135deg,#eef7f1,#ffffff);
    padding-bottom: 80px;
}

.reports-tabs {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 20px;
}

.reports-tabs a {
    padding: 12px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

.reports-tabs a.active {
    color: #3aa900;
    border-bottom: 4px solid #3aa900;
    font-weight: 500;
}

.kpi-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-top: 24px;
}

.kpi-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
   
    gap: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
    border: 1px solid #eaf6e6;
}

.kpi-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eaf6e6;
    color: #3aa900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.kpi-box p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.kpi-box h4 {
    margin: 4px 0;
    font-weight: 700;
}

.kpi-box .up {
    color: #16a34a;
    font-size: 13px;
}

.kpi-box .down {
    color: #dc2626;
    font-size: 13px;
}

/* FILTER PANEL */
/* Panel */
.filters-panel {
    display: flex;
    gap: 22px;
    margin: 28px 0;
    align-items: flex-end;
}

/* Each filter */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Label */
.filter-group label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* Input container */
.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    min-width: 210px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Icon */
.filter-item i {
    font-size: 16px;
    color: #6b7280;
}

/* Select */
.filter-item select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #374151;
    background: transparent;
    cursor: pointer;
}

/* Venue Performance filters: equal width and alignment */
.venue-perf-filters {
    flex-wrap: wrap;
    gap: 18px;
}
.venue-perf-filters .filter-group-equal {
    min-width: 180px;
    flex: 0 0 auto;
}
.venue-perf-filters .filter-item {
    min-width: 0;
    width: 100%;
}
.venue-perf-filters .filter-item select {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-group-equal .filter-item {
    min-width: 0;
}

/* Date range: single field that opens popup */
.filter-item-date-range {
    cursor: pointer;
    user-select: none;
}
.filter-item-date-range .filter-item-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #374151;
}
.filter-item-date-range .bi-chevron-down {
    font-size: 12px;
    color: #9ca3af;
}

/* Date range popup */
.filter-group-equal {
    position: relative;
}
.date-range-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 6px;
    min-width: 280px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 1050;
    border: 1px solid #e5e7eb;
}
.date-range-popup.show {
    display: block;
}
.date-range-presets .date-range-opt {
    display: block;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 6px;
    border: none;
    border-radius: 10px;
    background: #f3f4f6;
    color: #374151;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}
.date-range-presets .date-range-opt:hover {
    background: #e9f9ef;
    color: #3aa900;
}
.date-range-custom input.form-control-sm {
    max-width: 130px;
}


.chart-card {
    background: #fff;
    border-radius: 14px;
    padding: 16px !important;
    box-shadow:0 6px 20px rgba(0,0,0,.04);
}

.chart-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.chart-head h5 {
    margin:0;
    font-size:15px;
    font-weight:600;
}

.chart-head p {
    margin:0;
    font-size:13px;
    color:#6b7280;
}

.chart-head-export-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.venue-export-dropdown .btn-export-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 6px 12px;
    border-radius: 6px;
}
.venue-export-dropdown .btn-export-dropdown:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #111827;
}
.venue-export-dropdown .btn-export-dropdown i {
    font-size: 1rem;
}
.venue-export-dropdown .dropdown-menu {
    min-width: 140px;
}
.venue-export-dropdown .dropdown-item {
    font-size: 13px;
}
.venue-export-dropdown .dropdown-item i {
    opacity: 0.85;
}

.chart-body {
    height: 260px;      /* 🔥 IMPORTANT */
    min-height: 260px;  /* 🔥 IMPORTANT */
}

.venue-performance-table{
    margin-bottom: 55px;
}

/* ======================================================== */

/* --------------- reports sport ------------------- */

.revenue-sport-charts {
    margin-bottom: 55px;
}

/* ======================================================== */

/* --------------- reports customer ------------------- */

.segment-analysis {
    margin-bottom: 55px;
}


/* ======================================================== */


/* --------------- reports promotion effective ------------------- */

/* TABLE WRAPPER */
.segment-analysis {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* TABLE */
.segment-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.segment-table thead th {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
    white-space: nowrap;
}

.segment-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f1f5f9;
}

/* SORT ICON */
.segment-table .sort {
    font-size: 11px;
    margin-left: 6px;
    color: #9ca3af;
}

/* STATUS PILLS */
.status-pill {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.status-pill.high {
    background: #e9f7df;
    color: #3aa900;
}

.status-pill.medium {
    background: #fff4d6;
    color: #f59e0b;
}

.status-pill.low {
    background: #ffe4e6;
    color: #ef4444;
}


/* ======================================================== */

/* ------------settings------------------- */


/* SETTINGS PAGE */
.settings-page {
    max-width: 1200px;
}

/* PAGE HEAD */
.page-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* CARD */
.settings-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.settings-card h5 {
    margin-bottom: 16px;
    font-weight: 600;
}

/* LOGO */
.logo-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.logo-box {
    width: 100px;
    height: 100px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

/* FORM GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

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

.form-grid label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
    display: block;
}

/* FOOTER BAR */
.settings-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-top: 20px;
}

.settings-footer .note {
    font-size: 13px;
    color: #6b7280;
}

.settings-footer .actions {
    display: flex;
    gap: 12px;
}

/* BUTTONS */
.btn-green {
    background: #3aa900;
    color: #fff;
    border-radius: 999px;
    padding: 8px 18px;
}

.btn-outline-green {
    border: 1px solid #3aa900;
    color: #3aa900;
    border-radius: 999px;
    padding: 8px 18px;
}

.razorpaymargin {
    margin-bottom: 140px;
}

/* ======================================================== */

/* ---------------user view customer ------------------- */


.view-customer .card {
    background:#fff;
    border-radius:14px;
    padding:20px;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.page-head {
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.header-actions {
    display:flex;
    gap:10px;
}

.sub { color:#6b7280; font-size:13px }

.user-meta {
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    padding:0;
    list-style:none;
    font-size:13px;
    color:#4b5563;
}

/* STATS CARD – MATCH IMAGE */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #e6f2df;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(58,169,0,0.06);
    position: relative;
}

/* ICON */
.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #eaf6e2;
    color: #3aa900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}

/* TEXT STYLES */
.stat-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.stat-sub {
    font-size: 12px;
    color: #3aa900;
}

/* TREND TEXT */
.stat-up {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
}
.form-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.form-actions {
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:16px;
}

/* ----------- */

.booking-history {
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

/* SEARCH */
.search-box input {
    padding-left: 34px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 0px !important;

}
.search-box i {
    position: absolute;
    left: 12px;
    top: 50% !important;
    transform: translateY(-50%);
    color: #9ca3af;
}

/* FILTER PILLS */
.filter-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: #f3f4f6;
    font-size: 14px;
    cursor: pointer;
}
.pill.active {
    background: #3aa900;
    color: #fff;
}
.pill.clear {
    background: #f9fafb;
}

/* SUMMARY */
.summary-row {
    display: flex;
    gap: 24px;
    font-size: 13px;
}
.summary-row .danger {
    color: #f97316;
}

/* TABLE */
.custom-table thead th {
    font-size: 14px;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}
.custom-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

/* TIME PILL */
.time-pill {
    background: #eef2ff;
    color: #4338ca;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
}

/* STATUS BADGES */
.status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
}
.status.cancelled { background:#fee2e2; color:#dc2626; }
.status.paid { background:#dcfce7; color:#166534; }
.status.refunded { background:#e0f2fe; color:#0369a1; }
.status.pending { background:#fef3c7; color:#92400e; }

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-btn {
    border: 1px solid #d1d5db;
    background: #ebeaea6e;
    padding: 4px 10px;
    border-radius: 4px;
}
.page-btn.active {
    border-color: #3aa900;
    color: #3aa900;
}
.page-info {
    font-size: 12px;
    color: #6b7280;
    margin-left: 8px;
}




/* ======================================================== */


/* --------------- booking-create-venue ------------------- */


.create-venue .form-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,.04);
}

.create-venue h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.create-venue .hint {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.form-grid label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
    color: #374151;
}

.form-grid label span {
    color: #ef4444;
}

.upload-box {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 13px;
    cursor: pointer;
}

/* ============================================ */

/* SPORTS OFFERED */


/* GRID */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-top: 18px;
}

/* TILE */
.sport-tile {
    height: 92px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .2s ease;
}

/* ICON */
.sport-icon {
    font-size: 22px;
    color: #6b7280;
}

/* TEXT */
.sport-tile span {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    text-align: center;
    line-height: 1.2;
}

/* HOVER */
.sport-tile:hover {
    border-color: #3aa900;
}

/* SELECTED (GREEN CARD) */
.sport-tile.selected {
    background: #edf7e6;
    border: 1.5px solid #3aa900;
}

.sport-tile.selected .sport-icon,
.sport-tile.selected span {
    color: #3aa900;
    font-weight: 600;
}

/* DISABLED */
.sport-tile.disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    cursor: not-allowed;
}

.sport-tile.disabled .sport-icon,
.sport-tile.disabled span {
    color: #9ca3af;
}



/* ======================================================== */


.form-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.form-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-card hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin-bottom: 18px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.req {
    color: #ef4444;
}

.form-control {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    background: #fff;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:focus {
    outline: none;
    border-color: #3aa900;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 6px;
}

.radio-grid label {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
}

.radio-grid input {
    accent-color: #3aa900;
    width: fit-content !important;
    background: none !important;
    box-shadow: none !important;

}

.muted {
    font-size: 12px;
    color: #6b7280;
}


/* ======================================================== */


/* COURT SETUP */


.note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 10px;
    display: block;
}

.sport-select-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.sport-tile {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px 10px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
}

.sport-tile i {
    font-size: 20px;
    color: #6b7280;
    display: block;
    margin-bottom: 6px;
}

.sport-tile span {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.sport-tile.active {
    background: #ecf7e6;
    border-color: #3aa900;
}

.sport-tile.active i,
.sport-tile.active span {
    color: #3aa900;
}

.sport-tile.disabled {
    background: #f3f4f6;
    border-color: #f3f4f6;
    cursor: not-allowed;
}

.sport-tile.disabled span,
.sport-tile.disabled i {
    color: #9ca3af;
}

/* Court list */
.court-list {
    margin-top: 10px;
}

.court-row {
    display: grid;
    grid-template-columns: 120px 120px 140px 140px 160px;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.court-name {
    font-weight: 500;
    color: #374151;
}

.court-field,
.court-icon {
    color: #6b7280;
}

.court-action {
    font-weight: 500;
    cursor: pointer;
}

.court-action.green {
    color: #16a34a;
}

.court-status {
    font-weight: 500;
    cursor: pointer;
}

.court-status.orange {
    color: #f97316;
}

.court-status.green {
    color: #16a34a;
}


/* ============================================= */

.operating-hours .note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.hours-list {
    margin-top: 10px;
}

.hours-row {
    display: grid;
    grid-template-columns: 120px 60px 70px 150px 150px;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.day {
    font-weight: 500;
    color: #374151;
}

.status {
    font-size: 13px;
    font-weight: 500;
}

.status.open {
    color: #16a34a;
}

.status.closed {
    color: #6b7280;
}

.time {
    font-size: 13px;
    color: #374151;
}

.time.muted {
    color: #9ca3af;
}

/* Toggle Switch */
.switch {
    position: relative;
    width: 38px;
    height: 20px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    cursor: pointer;
    transition: .3s;
}

.slider::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .slider {
    background: #3aa900;
}

.switch input:checked + .slider::before {
    transform: translateX(18px);
}

/* ======================================================== */


.pricing-slot-settings h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.pricing-slot-settings hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin: 12px 0 18px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.form-control {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 0 14px;
    font-size: 14px;
    color: #6b7280;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #3aa900;
    box-shadow: 0 0 0 2px rgba(58,169,0,0.1);
}

/* ======================================================== */

.facilities-amenities h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.facilities-amenities hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin: 12px 0 16px;
}

.section-sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 14px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
}

.amenity-item input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    accent-color: #3aa900;
}

.custom-amenity {
    max-width: 520px;
}

.custom-amenity .form-control {
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 0 14px;
    font-size: 14px;
    color: #6b7280;
}

/* ================================================== */

.media-uploads h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.media-uploads hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin: 12px 0 18px;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.media-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 10px;
    display: block;
}

.media-label .required {
    color: #ef4444;
}

.media-label .hint {
    font-weight: 400;
    font-size: 13px;
    color: #6b7280;
    margin-left: 4px;
}

.upload-box {
    height: 160px;
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #ffffff;
}

.btn-upload {
    background: #3aa900;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-upload span {
    font-size: 18px;
    line-height: 1;
}

.or-text {
    font-size: 14px;
    color: #111827;
}

/* =========================================== */

.status-visibility h5 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.status-visibility hr {
    border: none;
    border-top: 1px solid #eef2f7;
    margin: 12px 0 14px;
}

.status-note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.status-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    min-width: 120px;
}

.toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-text {
    font-size: 14px;
    color: #111827;
}

/* SWITCH */
.switch {
    position: relative;
    width: 42px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 999px;
    transition: 0.3s;
}

.slider:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background: #ffffff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.switch input:checked + .slider {
    background: #3aa900;
}

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

/* ==================================================== */


/* ------------ create booking slot ----------------- */


.sub {
  font-size: 13px;
  color: #6b7280;
}

.card {
  border-radius: 14px;
  border: none;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}

.btn-green {
  background: #3aa900;
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
}

.btn-green:hover {
  background: #329000;
}


.review-section {
    margin-top: 20px;
}

.review-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.review-row {
    row-gap: 14px;
}

.review-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.review-value {
    font-size: 14px;
    color: #111827;
}












