.svgs-wrap {
    max-width: 860px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.svgs-cabecera {
    text-align: center;
    padding: 10px 0 28px;
}

.svgs-cabecera h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1c1210;
    margin-bottom: 6px;
}

.svgs-cabecera p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.svgs-cargando {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
    font-size: 14px;
}

.svgs-vacio {
    text-align: center;
    padding: 48px 24px;
    background: #f9fafb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 15px;
}

.svgs-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.svgs-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    transition: box-shadow .2s;
}

.svgs-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,.11);
}

.svgs-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.svgs-titulo {
    font-size: 19px;
    font-weight: 700;
    color: #1c1210;
    margin: 0 0 4px;
}

.svgs-fecha {
    font-size: 12px;
    color: #9ca3af;
}

.svgs-salario {
    background: #fde8e5;
    color: #c0200e;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.svgs-descripcion {
    color: #374151;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.svgs-requisitos {
    background: #f9fafb;
    border-left: 3px solid #e5e7eb;
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 14px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.svgs-requisitos strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-weight: 600;
}

.svgs-requisitos p {
    margin: 0;
}

.svgs-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
}

.svgs-btn-aplicar {
    background: #d9230f;
    color: #ffffff;
    border: none;
    padding: 10px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.svgs-btn-aplicar:hover { background: #b71c0c; }

.svgs-form-wrap {
    border-top: 2px solid #fde8e5;
    margin-top: 20px;
    padding-top: 20px;
}

.svgs-form-titulo {
    font-size: 14px;
    color: #374151;
    margin-bottom: 18px;
}

.svgs-fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.svgs-campo {
    display: flex;
    flex-direction: column;
}

.svgs-campo-full {
    margin-bottom: 14px;
}

.svgs-campo label,
.svgs-campo-full label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
}

.svgs-campo input,
.svgs-campo-full textarea {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    color: #111827;
    font-family: inherit;
    background: #fff;
    transition: border-color .15s;
}

.svgs-campo input:focus,
.svgs-campo-full textarea:focus {
    outline: none;
    border-color: #d9230f;
    box-shadow: 0 0 0 3px rgba(217,35,15,.09);
}

.svgs-campo-full textarea {
    width: 100%;
    resize: vertical;
    min-height: 96px;
}

.svgs-campo input[type="file"] {
    padding: 5px 8px;
    cursor: pointer;
}

.svgs-acciones {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.svgs-btn-enviar {
    background: #d9230f;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.svgs-btn-enviar:hover   { background: #b71c0c; }
.svgs-btn-enviar:disabled { background: #9ca3af; cursor: not-allowed; }

.svgs-btn-cancelar {
    background: #f3f4f6;
    color: #374151;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
}

.svgs-btn-cancelar:hover { background: #e5e7eb; }

.svgs-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
}

.svgs-msg-ok    { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.svgs-msg-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

@media (max-width: 600px) {
    .svgs-fila { grid-template-columns: 1fr; }
    .svgs-card-header { flex-direction: column; }
    .svgs-card-footer { justify-content: flex-start; }
}
