/* Fraud Warning Modal Styles */
.fraud-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in;
}

.fraud-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.5s ease-out;
    border: 3px solid #ff4444;
}

.fraud-modal-header {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
    text-align: center;
}

.fraud-modal-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.fraud-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.fraud-close-btn:hover {
    color: #ffcccc;
    transform: scale(1.2);
}

.fraud-modal-body {
    padding: 30px;
    line-height: 1.6;
    color: #333;
}

.fraud-note-section {
    background: #e8f5e8;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.fraud-note-section h3 {
    margin: 0 0 10px 0;
    color: #28a745;
    font-weight: bold;
}

.fraud-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fraud-checklist li {
    padding: 5px 0;
    font-weight: 500;
    color: #155724;
}

.fraud-warning-section {
    background: #f8d7da;
    border: 2px solid #dc3545;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.fraud-warning {
    margin: 0;
    color: #721c24;
    font-weight: bold;
    font-size: 1.1em;
}

.fraud-footer-message {
    text-align: center;
    margin-bottom: 25px;
}

.fraud-footer-message p {
    margin: 10px 0;
    color: #666;
}

.fraud-company-name {
    color: #007bff !important;
    font-size: 1.1em;
}

.fraud-action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.fraud-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.fraud-btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.fraud-btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.fraud-btn-secondary {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220,53,69,0.3);
}

.fraud-btn-secondary:hover {
    background: linear-gradient(135deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,53,69,0.4);
}

/* Modal Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .fraud-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .fraud-modal-header {
        padding: 15px 20px;
    }
    
    .fraud-modal-header h2 {
        font-size: 1.2em;
    }
    
    .fraud-modal-body {
        padding: 20px;
    }
    
    .fraud-action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fraud-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Pulse animation for attention */
.fraud-modal-header {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}