﻿<style >
/* Overall delivery section */
.axil-checkout-notice {
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    background-color: #fff;
}

.axil-checkout-notice h5 {
    font-size: 1.25rem;
    color: #333;
}

/* Delivery options radio buttons */
.delivery-options .form-check {
    margin-bottom: 0.75rem;
}

.delivery-options .form-check-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #495057;
}

/* Date input styling */
#delivery-date.flatpickr-input {
    font-size: 1.25rem;
    padding-left: 9px;
    padding-right: 9px;
    border: 2px solid #dee2e6;
    border-right: none;
    border-radius: 0.375rem 0 0 0.375rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

    #delivery-date.flatpickr-input:focus {
        outline: none;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        border-color: #86b7fe;
    }

.input-group-text {
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    border-left: none;
    border-radius: 0 0.375rem 0.375rem 0;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .input-group-text:hover {
        background-color: #e9ecef;
    }

/* Time slots container */
.delivery-time-slots .form-check {
    margin-bottom: 0.75rem;
}

.delivery-time-slots .form-check-label {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-time-slots .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #adb5bd;
}

    .delivery-time-slots .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

/* Loading state */
.loading {
    text-align: center;
    padding: 1rem;
    color: #6c757d;
    font-style: italic;
}

/* Error message */
.text-danger {
    color: #dc3545 !important;
    font-weight: 500;
}

</style >
