/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 30 2026 | 06:55:20 */
/* ===== FLOATING RESULTS OVERLAY ===== */
.cs-results-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 28px;
    animation: csFadeIn 0.25s ease;
	margin: -3rem;
}

.cs-results-overlay.is-open {
    display: block;
}

@keyframes csFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Header row */
.cs-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cs-results-title {
    font-size: 20px;
    font-weight: 700;
    color: #011E41;
    margin: 0;
}

.cs-results-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #64748b;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

.cs-results-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Scrollable card list */
.cs-results-list {
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 4px;
}

.cs-results-list::-webkit-scrollbar {
    width: 6px;
}

.cs-results-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

/* ===== SLOT CARD ===== */
.cs-slot-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cs-slot-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Left side: date box + info */
.cs-slot-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cs-date-box {
    text-align: center;
    min-width: 64px;
    flex-shrink: 0;
}

.cs-date-day {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.1;
}

.cs-date-month {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-slot-date {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.cs-slot-time {
    font-size: 14px;
    color: #64748b;
}

/* Right side: badge + cost + book button */
.cs-slot-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cs-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cs-badge-available {
    background: #dcfce7;
    color: #166534;
}

.cs-badge-full {
    background: #fee2e2;
    color: #991b1b;
}

.cs-slot-cost {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    min-width: 80px;
    text-align: right;
}

.cs-slot-book {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #0C8CE9;
    background: transparent;
    border: 1px solid #0C8CE9;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    text-decoration: none;
	transform: skewX(-35deg);
}

.cs-slot-book span {
	display: inline-block;
	transform: skewX(35deg);
}

.cs-slot-book:hover {
    background: rgba(0, 229, 208, 0.15);
     color: #0C8CE9;
}

/* No results */
.cs-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
    font-size: 15px;
}

.cs-contact-btn {
	text-decoration: none !important;
	display: inline-block;
	padding: 12px 30px;
	background: #011E41;
	color: white;
	border-radius: 4px;
	font-weight: 600;
}

.cs-contact-btn:hover {
	background: #03305e;
	color: white;
}

/* Error */
.cs-error {
    margin-top: 12px;
    padding: 10px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .cs-slot-card {
		padding: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cs-slot-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cs-slot-cost {
        text-align: left;
        min-width: auto;
    }

    .cs-results-overlay {
        position: relative;
		margin: 0rem;
        margin-top: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
	
	.cs-results-list{
		max-height: 350px;
	}
	
	.cs-results-close {
		background: transparent;	
		box-shadow: none;
	}
	
	.cs-results-close:hover {
		background: transparent;	
	}
	
	.cs-slot-book{
		margin-left: 15px;
		padding: 8px 12px;
	}
}
