/* Order Confirmation Styles */

.success-banner {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    border-top: 5px solid #28a745; /* Success Green */
}

/* Background Icon Effect */
.success-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(40, 167, 69, 0.05);
    transform: rotate(15deg);
    pointer-events: none;
}

/* Pulse Animation for Main Icon */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Card Enhancements */
.border-custom {
    border: 1px solid #eee;
    border-radius: 8px;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
}

/* Badge Tweaks */
.badge.bg-success.bg-opacity-10 {
    background-color: rgba(25, 135, 84, 0.1) !important;
    color: #198754 !important;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

/* Table Styles */
.table th {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.table td {
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .success-banner {
        padding: 30px 20px !important;
    }
    
    .success-icon i {
        font-size: 3rem;
    }
    
    .success-banner h2 {
        font-size: 1.5rem;
    }
}
