:root {
    /* Colores de marca - Modo Claro */
    --light-bg:        #F4F2FF;   /* fondo general (reemplaza al negro) */
    --light-card:      #FFFFFF;   /* fondo de tarjetas y zonas destacadas */
    --text-dark:       #383838;   /* texto principal (reemplaza al blanco) */
    --text-muted:      #425B76;   /* texto secundario y etiquetas */
    --accent:          #425B76;   /* títulos, hover y acentos */
    --radius:          14px;
    --shadow:          0 4px 18px rgba(56, 56, 56, 0.08);  /* sombra suave y clara */
    --border:          rgba(66, 91, 118, 0.12);           /* borde sutil */
}

body {
    font-family: "Ubuntu Sans", sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

h1 {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.job-card {
    background: var(--light-card);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 20px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(56, 56, 56, 0.12);
    border-color: var(--accent);
}

.job-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.job-company {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.job-tags span {
    background: rgba(66, 91, 118, 0.1);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    margin-right: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.left, .right {
    height: 100vh;
    overflow-y: auto;
}

.right {
    border-left: 1px solid var(--border);
}

/* Pequeño extra para que el iframe quede bonito en modo claro */
iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}