/* Tipografía general estilo SaaS */
.jp-company-dashboard {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.jp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.jp-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

/* Botones estilo Stripe */
.jp-btn {
    padding: 8px 16px;
    border-radius: 8px;
    background: #eef0f3;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
}

.jp-btn:hover {
    background: #e2e4e7;
}

.jp-btn-new {
    background: #0a66ff;
    color: white;
    border-color: #0a5ce0;
}

.jp-btn-new:hover {
    background: #0052e0;
}

.jp-btn-delete {
    background: #fcebea;
    color: #b91c1c;
    border-color: #f5c2c2;
}

.jp-btn-delete:hover {
    background: #f8d7da;
}

/* Indicadores estilo cards minimalistas */
.jp-indicators {
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
}

.jp-indicators .item {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
}

.jp-indicators .item .value {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.jp-indicators .item .label {
    font-size: 13px;
    color: #6b7280;
}

/* Tabla estilo Stripe Dashboard */
.jp-vacantes-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.jp-vacantes-table thead th {
    text-align: left;
    font-size: 13px;
    color: #6b7280;
    padding: 6px 10px;
}

.jp-vacantes-table tbody tr {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.jp-vacantes-table td {
    padding: 14px 10px;
    font-size: 14px;
    color: #1a1a1a;
}

.jp-vacantes-table tr:hover {
    background: #f9fafb;
}

.jp-vacantes-table td:first-child {
    font-weight: 500;
}

.jp-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.jp-modal.open {
    display: flex;
}

.jp-modal-inner {
    background: #ffffff;
    padding: 25px;
    max-width: 500px;
    width: 95%;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    position: relative;
}

.jp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.jp-btn-quick {
    display: inline-block;
    padding: 10px 18px;
    background: #0a66ff;
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.jp-btn-quick:hover {
    background: #004ed1;
}
