.vc-contenedor {
    max-width: 100%;
}

/* TÍTULO AMARILLO */
.vc-header.amarillo {
    background: #fff3cd;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-left: 6px solid #ffc107;
    margin-bottom: 20px;
}

/* FORM */
.vc-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .vc-form {
        flex-direction: column;
    }
}

.vc-form input {
    flex: 1;
    padding: 14px;
    font-size: 16px;
    border: 2px solid #ced4da;
    border-radius: 4px;
}

.vc-form button {
    background: #0d6efd;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.vc-form button:hover {
    background: #0b5ed7;
}

/* TABLA */
.vc-tabla {
    width: 100%;
    border-collapse: collapse;
}

.vc-tabla thead {
    background: #e9ecef;
}

.vc-tabla th,
.vc-tabla td {
    border: 1px solid #dee2e6;
    padding: 10px;
    text-align: center;
}

/* BOTÓN SECUNDARIO */
.vc-centrado {
    text-align: center;
    margin-top: 20px;
}

.vc-boton-secundario {
    display: inline-block;
    padding: 10px 20px;
    background: #6c757d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background .3s;
}

.vc-boton-secundario:hover {
    background: #495057;
}

/* ERROR */
.vc-error {
    color: #dc3545;
    font-weight: bold;
    margin-top: 15px;
}




