/* 
 * Arquivo: /wp-content/plugins/ninja-recebedor-pagarme/assets/css/prova-de-vida.css
 * Estilos para o sistema de KYC/Prova de Vida
 */

.kyc-container {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.kyc-status {
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    font-weight: bold;
}

.kyc-status-pending {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.kyc-status-warning {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.kyc-status-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.kyc-status-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.kyc-button {
    background-color: #007cba;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.kyc-button:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

.kyc-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.kyc-info {
    background-color: #e7f3ff;
    border: 1px solid #b8daff;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

.kyc-link-expired {
    color: #dc3545;
    font-weight: bold;
}

.kyc-loading {
    display: none;
    margin-left: 10px;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo para contas ativas */
.account-active-notice {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    color: #155724;
    text-align: center;
}

.account-active-notice h3 {
    color: #155724;
    margin-top: 0;
    margin-bottom: 15px;
}

.account-active-notice p {
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}