/* /Pages/Checkout.razor.rz.scp.css */
.delivery-options[b-yq29ahr0hb] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delivery-option[b-yq29ahr0hb] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    font-size: 0.9rem;
}

.delivery-option:hover[b-yq29ahr0hb] {
    border-color: #f39c12;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.15);
}

.delivery-option.selected[b-yq29ahr0hb] {
    border-color: #f39c12;
    background-color: #fff9e6;
    box-shadow: 0 2px 12px rgba(243, 156, 18, 0.2);
}

.delivery-option input[type="radio"][b-yq29ahr0hb] {
    accent-color: #f39c12;
    width: 16px;
    height: 16px;
}

.delivery-option label[b-yq29ahr0hb] {
    cursor: pointer;
    font-size: 0.9rem;
}

.delivery-option .badge[b-yq29ahr0hb] {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Animation pour la sélection */
.delivery-option.selected[b-yq29ahr0hb]::before {
    content: "✓";
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #f39c12;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.delivery-option[b-yq29ahr0hb] {
    position: relative;
}

/* Styles pour la section point relais */
.pickup-point-section[b-yq29ahr0hb] {
    border: 2px dashed #ffc107 !important;
    background-color: #fffdf5 !important;
}

.pickup-point-card[b-yq29ahr0hb] {
    cursor: pointer;
    transition: all 0.2s ease;
}

.pickup-point-card:hover[b-yq29ahr0hb] {
    background-color: #f8f9fa;
    border-color: #f39c12 !important;
}

.pickup-point-card.border-primary[b-yq29ahr0hb] {
    border-color: #f39c12 !important;
    border-width: 2px !important;
}

.pickup-point-card input[type="radio"][b-yq29ahr0hb] {
    accent-color: #f39c12;
}

/* Style pour l'estimation de livraison */
.delivery-estimate-box[b-yq29ahr0hb] {
    animation: fadeIn-b-yq29ahr0hb 0.3s ease-in-out;
}

@keyframes fadeIn-b-yq29ahr0hb {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour l'auto-complétion d'adresse */
.address-suggestions[b-yq29ahr0hb] {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    background: white;
}

.address-suggestions .list-group-item[b-yq29ahr0hb] {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.address-suggestions .list-group-item:hover[b-yq29ahr0hb] {
    background-color: #fff9e6;
}

.address-suggestions .list-group-item:last-child[b-yq29ahr0hb] {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}
/* /Pages/SellerFeedback.razor.rz.scp.css */
.seller-feedback-page[b-vik8a4dqys] {
    background-color: #f8f9fa;
    min-height: 80vh;
}

.seller-info[b-vik8a4dqys] {
    border-left: 4px solid #f39c12;
}

.seller-avatar[b-vik8a4dqys] {
    width: 50px;
    height: 50px;
    background-color: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style des étoiles de notation */
.star-rating[b-vik8a4dqys] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star-rating .star[b-vik8a4dqys] {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating .star:hover[b-vik8a4dqys],
.star-rating .star.active[b-vik8a4dqys] {
    color: #ffc107;
    transform: scale(1.1);
}

.star-rating .star:hover ~ .star[b-vik8a4dqys] {
    color: #ddd;
}

.star-rating .rating-text[b-vik8a4dqys] {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Animation de succès */
.success-animation[b-vik8a4dqys] {
    animation: bounceIn-b-vik8a4dqys 0.6s ease;
}

@keyframes bounceIn-b-vik8a4dqys {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Style des boutons radio groupe */
.btn-group .btn-check:checked + .btn-outline-success[b-vik8a4dqys] {
    background-color: #28a745;
    color: white;
}

.btn-group .btn-check:checked + .btn-outline-danger[b-vik8a4dqys] {
    background-color: #dc3545;
    color: white;
}

.btn-group .btn-check:checked + .btn-outline-secondary[b-vik8a4dqys] {
    background-color: #6c757d;
    color: white;
}

/* Card header */
.card-header.bg-primary[b-vik8a4dqys] {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

/* Hover effects */
.star-rating .star:not(.active):hover[b-vik8a4dqys] {
    color: #ffdd57;
}
