body {
    background-color: #f8f9fa;
}

.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.btn-danger {
    padding: 12px;
    font-weight: 500;
}

.btn-danger:hover {
    background-color: #bb2d3b;
}

/* Enhanced Modal Styles */
.glass-effect {
    background: rgba(33, 33, 33, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
}

.modal-content {
    border: none;
    overflow: hidden;
}

.success-animation {
    position: relative;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    animation: scaleIn 0.5s ease-in-out;
}

.payment-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}

.payment-info i {
    font-size: 1.2rem;
}

#modalOkButton {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#modalOkButton:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal.fade .modal-dialog {
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}

/* Additional hover effects */
.btn-close:hover {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.success-icon {
    transition: transform 0.3s ease;
}

.success-icon:hover {
    transform: scale(1.1);
}