/* My Bookings Page Specific Styles */

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
    right: 10px;
}

.rid-menubar ul li a {
    font-size: 15px !important;
    margin-right: 20px !important;
}

.section-header {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.section-header:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.form-container {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.form-control, .form-select {
    border-left: none;
    padding-left: 5px;
}

.form-control:focus, .form-select:focus {
    border-color: #ced4da;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
    transform: translateY(-2px);
}

.info-text {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.selected-bike-placeholder {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 2px dashed #dee2e6;
}

.form-label {
    margin-bottom: 8px;
    color: #495057;
}

.text-danger.error {
    font-size: 14px;
    margin-top: 5px;
}

.bg-custom-light {
    background-color: #E7EBEE !important;
    border: unset;
}

.center-padding-x {
    padding-left: 10%;
    padding-right: 10%;
}

.w-33 {
    width: 33%;
}

.bg-none {
    border: unset;
}

.booking-heading-input{
    font-weight: 600;
}

.terms-condition{
    display: flex;
    justify-content: center;
}

.w-80{
    width: 80%;
}

.p-8{
    padding: 8px;
}

/* Accessory Card styles */
.accessory-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.accessory-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    width: calc(33.33% - 10px);
    min-width: 180px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
}

.accessory-card.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 1px #0d6efd;
}

.accessory-icon-box {
    width: 45px;
    height: 45px;
    background: #f0f4f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.accessory-icon-box svg {
    width: 28px;
    height: 28px;
    color: #333;
}

.accessory-info {
    flex-grow: 1;
    line-height: 1.2;
}

.accessory-name {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.accessory-price {
    font-size: 13px;
    color: #666;
    display: block;
}

.b-round-10{
    border-radius: 10px;
}

.accessory-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.accessory-card:hover {
    transform: scale(1.1);
}

.accessory-card.selected .accessory-check {
    display: flex;
}

.accessory-card input {
    display: none;
}

.no-extra-space-popup .swal2-actions {
    margin-top: 10px !important;
}

.no-extra-space-popup .swal2-footer {
    border-top: none !important;
    margin-top: 10px !important;
    padding-top: 0 !important;
    text-align: center;
}

@media (max-width: 768px) {
    .accessory-card {
        width: calc(50% - 8px);
    }
}

@media (max-width: 480px) {
    .accessory-card {
        width: 100%;
    }
}
