/**
 * Estilos para el modal de verificación de duplicados
 */

.dup-verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.dup-verify-content {
    background: #1a1a24;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dup-verify-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dup-verify-icon {
    width: 48px;
    height: 48px;
    background: rgba(234, 179, 8, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dup-verify-icon svg {
    width: 24px;
    height: 24px;
    color: #facc15;
}

.dup-verify-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.dup-verify-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.dup-verify-message {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.dup-verify-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dup-verify-buttons button {
    width: 100%;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-verify-yes {
    background: #6366f1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-verify-yes:hover {
    background: #4f46e5;
}

.btn-verify-yes svg {
    width: 16px;
    height: 16px;
}

.btn-verify-skip {
    background: #252532;
    color: rgba(255, 255, 255, 0.8);
}

.btn-verify-skip:hover {
    background: #2d2d3d;
}

.btn-verify-cancel {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
}

.btn-verify-cancel:hover {
    color: rgba(255, 255, 255, 0.7);
}
