/* Custom Modal Styles */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content-custom {
    background: white;
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.modal-icon.success {
    background: #D1FAE5;
    color: #059669;
}

.modal-icon.error {
    background: #FEE2E2;
    color: #DC2626;
}

.modal-icon.warning {
    background: #FEF3C7;
    color: #D97706;
}

.modal-icon.info {
    background: #DBEAFE;
    color: #3B82F6;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.modal-message {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #072D17 0%, #15803D 100%) !important;
    color: white !important;
}

.modal-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7, 45, 23, 0.3);
}

.modal-btn-secondary {
    background: #F3F4F6;
    color: #374151;
}

.modal-btn-secondary:hover {
    background: #E5E7EB;
}
