.date-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.date-card.unavailable {
    opacity: 0.6;
}
.date-header{
    margin-bottom:0px !important;
    padding: 10px 0px 10px 0px!important;
}
.date-header h3 {
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
}

.date-header .date-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-std);
}

.date-location {
    margin-bottom: 0rem;
    color: #666;
    display: flex;
    align-items: center;
    font-weight:700;
    font-size:18px;
}

.date-location span {
    margin-right: 0.5rem;
}

.date-availability {
    margin-bottom: 0rem;
    margin-left:0.25rem;
    font-weight: 500;
    font-size:14px !important;
}

.date-availability .available {
    color: #28a745;
}

.date-availability .unavailable-text {
    color: #dc3545 !important;
}

.date-price {
    margin-bottom: 0rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

.book-button {
    display: inline-block;
    background: var(--btn-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.book-button:hover {
    background: var(--btn-hover);
}

.book-button-disabled {
    display: inline-block;
    background: #ccc;
    color: #666;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    cursor: not-allowed;
}
