.booking-section {
    text-align: center; /* Heading + links centered */
    margin-top: 80px;
}

.booking-heading {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

.booking-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-links a {
    flex: 1;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 150px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-links a:hover {
    background-color: #005177;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.booking-icon {
    font-size: 40px;
    margin-bottom: 40px;
}




/* Table Container */
.booking-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

/* Table Header */
.booking-table thead tr {
    background-color: #f4f4f4;
}

.booking-table th, .booking-table td {
    padding: 10px 12px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Stripe rows */
.booking-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

/* Hover effect */
.booking-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Table Title */
.booking-table-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
    .booking-table th, .booking-table td {
        padding: 8px 6px;
    }
    .booking-table-title {
        font-size: 18px;
    }
}

/* Pagination Styles */
.flbs-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.flbs-pagination a {
    padding: 8px 12px;
    text-decoration: none;
    color: #0073aa;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.flbs-pagination a:hover {
    background-color: #0073aa;
    color: #fff;
}

.flbs-pagination a.active {
    background-color: #0073aa;
    color: #fff;
    font-weight: bold;
}

.flbs-pagination a.prev,
.flbs-pagination a.next {
    font-weight: bold;
}





/* Tab Styles */
.isb-admin-wrap {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    font-family: Arial, sans-serif;
   
}

.isb-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 15px;
}

.isb-tab {
    background: #f1f1f1;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px 4px 0 0;
    font-size: 15px;
}

.isb-tab.active {
    background: #ffffff;
    font-weight: bold;
}

.isb-tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #ddd;
    border-top: none;
    background: #fff;
}

.isb-tab-content.active {
    display: block;
}
.isb-tab-content{display:none;}
.isb-tab-content.active{display:block;}


.smb-toggle-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:400px;
    margin-top:10px;
}

.smb-switch{
    position:relative;
    width:52px;
    height:26px;
}

.smb-switch input{display:none;}

.smb-slider{
    position:absolute;
    inset:0;
    background:#ccc;
    border-radius:20px;
    transition:.3s;
    cursor:pointer;
}

.smb-slider:before{
    content:"";
    position:absolute;
    width:22px;
    height:22px;
    left:2px;
    bottom:2px;
    background:#fff;
    border-radius:50%;
    transition:.3s;
}

.smb-switch input:checked + .smb-slider{
    background:#2271b1;
}

.smb-switch input:checked + .smb-slider:before{
    transform:translateX(26px);
}



/* Reports Tab Styling */
.isb-report-title {
    margin-bottom: 25px;
    font-size: 22px;
    color: #23282d;
}

.isb-report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.isb-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e5e5;
    transition: transform 0.2s ease;
}

.isb-stat-card:hover {
    transform: translateY(-3px);
}

/* Card Borders */
.isb-stat-card.total-bookings {
    border-left: 6px solid #2271b1; /* WordPress Blue */
}

.isb-stat-card.month-bookings {
    border-left: 6px solid #108548; /* Success Green */
}

.isb-card-content h3 {
    margin: 0;
    font-size: 15px;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.isb-stat-number {
    font-size: 36px;
    font-weight: 700;
    margin: 10px 0;
    color: #1d2327;
}

.isb-card-label {
    font-size: 13px;
    color: #8c8f94;
}

.isb-card-icon {
    font-size: 40px;
    opacity: 0.2;
}

/* Responsive adjust */
@media (max-width: 600px) {
    .isb-report-grid {
        grid-template-columns: 1fr;
    }
}







/** 
 update/edit css styles
 */
 /* Edit Page Container */
.isb-edit-wrap {
    margin: 20px 20px 0 0;
    max-width: 1200px;
}

/* Form Styling */
.isb-edit-form {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    padding: 30px;
    border-radius: 8px;
}

.isb-edit-form h2 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 40px;
    color: #1d2327;
}

/* Form Groups */
.isb-form-group {
    margin-bottom: 20px;
}

.isb-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3338;
}

/* Input Fields */
.isb-edit-form input[type="text"],
.isb-edit-form input[type="email"],
.isb-edit-form input[type="date"],
.isb-edit-form input[type="time"],
.isb-edit-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.isb-edit-form input:focus,
.isb-edit-form textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

/* Buttons Section */
.isb-form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

/* Required Star */
.required-star {
    color: #d63638;
    margin-left: 3px;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .isb-edit-form {
        padding: 15px;
    }
}













/* Mechanical booking admin menu css */
/* Add New Service button */
.add-service-top {
    text-align: left;
    margin-bottom: 20px;
}



/* Mechanical Booking Admin Table Styling */

/* Main Wrapper */
.mechanical-booking-wrapper {
    margin: 20px 20px 20px 0;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mechanical-booking-wrapper h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d2327;
}

/* Add Service Button Section */
.add-service-top {
    margin-bottom: 20px;
}

/* Custom Table Styling */
.booking-table.wp-list-table {
    border: none;
    box-shadow: none;
}

.booking-table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #e2e8f0;
    padding: 15px 10px;
    font-weight: 600;
}

.booking-table tbody td {
    padding: 12px 10px;
    vertical-align: middle;
}

/* Action Buttons Styling */
.booking-action a {
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.booking-action .edit-link {
    color: #2271b1;
    background: #f0f6fb;
}

.booking-action .edit-link:hover {
    background: #2271b1;
    color: #fff;
}

.booking-action .delete-link {
    color: #d63638;
    background: #fcf0f1;
    margin-left: 5px;
}



/* Pagination Styling */
.pagination-wrapper {
    margin-top: 30px;
    text-align: right;
}

.pagination-wrapper .page-numbers {
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #d1d5db;
    text-decoration: none;
    color: #4b5563;
    border-radius: 4px;
    margin-left: 5px;
    transition: all 0.2s ease;
}

.pagination-wrapper .page-numbers:hover {
    border-color: #2271b1;
    color: #2271b1;
}

.pagination-wrapper .page-numbers.current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}





/*Mechanical edit css*/
/* Form Row Layout */
.isb-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* Form Column - flexible width */
.isb-form-col {
    flex: 1;
}

/* Basic styling for spacing and labels */
.isb-form-group {
    margin-bottom: 15px;
}

.isb-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.isb-form-group input[type="text"],
.isb-form-group input[type="email"],
.isb-form-group input[type="tel"],
.isb-form-group input[type="date"],
.isb-form-group input[type="time"],
.isb-form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
}

.required-star {
    color: red;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .isb-form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* Dashboard Container */
.isb-admin-wrap {
    margin: 20px 20px 0 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Header Section */
.isb-admin-header {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(34, 113, 177, 0.2);
}

.isb-header-content h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.isb-header-content h1 span {
    font-size: 14px;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: normal;
    vertical-align: middle;
}

.isb-header-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 10px 0 0 0;
}

/* Grid Layout */
.isb-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Modern Card Design */
.isb-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.isb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #2271b1;
}

/* Icon Styles */
.isb-card-icon-wrapper {
    height: 60px;
    width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 25px 0 25px;
}

.isb-card-icon-wrapper span {
    font-size: 32px;
    height: 32px;
    width: 32px;
}

.mech-icon { background: #f0f6fb; color: #2271b1; }
.interview-icon { background: #fdf2f2; color: #d63638; }
.home-icon { background: #f0fdf4; color: #46b450; }

/* Card Body */
.isb-card-body {
    padding: 20px 25px;
    flex-grow: 1;
}

.isb-card-body h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #1e293b;
}

.isb-card-body p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Shortcode Box */
.isb-shortcode-container {
    margin-top: 20px;
}

.isb-shortcode-container label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 5px;
}

.isb-copy-wrapper {
    display: flex;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 6px;
    padding: 4px;
}

.isb-copy-wrapper input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-family: monospace;
    font-size: 12px;
    color: #475569;
    flex-grow: 1;
}

.isb-copy-btn {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    cursor: pointer;
    border-radius: 4px;
    padding: 2px 6px;
    position: relative;
}

.isb-copy-btn:hover {
    background: #f1f5f9 !important;
    color: #2271b1;
}

/* Tooltip style */
.isb-copy-btn::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.isb-copy-btn:hover::after { opacity: 1; }

/* Footer */
.isb-card-footer {
    padding: 20px 25px;
    border-top: 1px solid #f1f5f9;
}

.isb-main-btn {
    display: block;
    text-align: center;
    background: #2271b1;
    color: white !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}

.isb-main-btn:hover {
    background: #135e96;
}

/* Home booking service css */
/* Container Spacing */
.flbs-content-area {
    margin-top: 25px;
}

/* Analytics Cards Styling */
.flbs-analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.flbs-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    border-radius: 4px;
}

.flbs-card h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #50575e;
}

.flbs-card .count {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

/* Specific Card Colors */
.total-bookings { border-top: 4px solid #2271b1; }
.total-bookings .count { color: #2271b1; }

.today-bookings { border-top: 4px solid #46b450; }
.today-bookings .count { color: #46b450; }

.upcoming-bookings { border-top: 4px solid #ffb900; }
.upcoming-bookings .count { color: #ffb900; }

/* Table Action Buttons */
.flbs-delete-btn {
    color: #d63638;
    text-decoration: none;
}
.flbs-delete-btn:hover {
    color: #991100;
}

/* Pagination Styling */
.flbs-pagination-container {
    margin-top: 20px;
}
.flbs-pagination-container .page-numbers {
    background: #fff;
    padding: 5px 12px;
    border: 1px solid #ccc;
    text-decoration: none;
    margin-right: 4px;
}
.flbs-pagination-container .page-numbers.current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}


/* home service booking form css */

.preferredData{
    display: flex; gap: 15px;
}
.preferredData {
    display: flex;
    gap: 20px; 
}
.preferredData .isb-form-group {
    flex: 1;
}
.required-star {
    color: red;
}

.flbs-coming-soon-box {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    text-align: center;
}

.flbs-coming-soon-box .growth-text {
    color: #666;
}