/* Timeslot Pill Styles - Pixel Perfect Design */
.timeslot-button {
    border: 2px solid #b8a9c9;
    border-radius: 8px;
    padding: 12px 10px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

.timeslot-button:hover {
    background-color: #f8f8f8;
    border-color: #a89bb8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(184, 169, 201, 0.2);
}

.timeslot-button.selected {
    background-color: #b8a9c9;
    color: #fff;
    border-color: #b8a9c9;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(184, 169, 201, 0.4);
}

.timeslot-info {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    min-height: 16px;
    margin-bottom: 3px;
}

.timeslot-time {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: left;
}

.timeslot-button.selected .timeslot-time,
.timeslot-button.selected .timeslot-info {
    color: #fff;
}

/* Container and Grid Styles */
.timeslot-options {
    margin: 0;
    padding: 20px 0;
}

.timeslot-options .col-6,
.timeslot-options .col-md-4,
.timeslot-options .col-lg-3 {
    padding: 8px;
}

/* Grid layout for pills */
.timeslot-options .col-6 {
    padding: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .timeslot-button {
        min-height: 60px;
        padding: 8px 6px;
    }
    
    .timeslot-info {
        font-size: 12px;
    }
    
    .timeslot-time {
        font-size: 15px;
    }
}

.deals-badge{
	color: #272245!important;
	background-color: #FFF1C8!important;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    margin-top: 10px;
}