.modal-content {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
}

.modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
    justify-content: center;
}

.modal-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeInScale 0.5s ease-in-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body p {
    font-size: 1.1rem;
    color: #6c757d;
}
