body{
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    margin:0;
    padding:0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:rgb(0, 92, 46);
    color:white;
    padding:20px;

}

.card{
    background:white;
    padding:20px;
    border-radius:10px;
    margin-top:20px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.vacantes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:25px;
}

.vacante-card{
    background:#ffffff;
    border:1px solid #e3e3e3;
    border-radius:14px;
    padding:24px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
}

.vacante-card h3{
    margin-top:0;
    color:#0c3b2e;
}

.btn-aplicar{
    display:inline-block;
    background:#0c8f4f;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    font-weight:bold;
    margin-top:12px;
}

.btn-aplicar:hover{
    background:#08733f;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    margin-top:15px;
}

label{
    display:block;
    font-weight:bold;
    margin-top:14px;
    margin-bottom:6px;
}

input, select, textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    box-sizing:border-box;
    font-size:15px;
}

textarea{
    min-height:90px;
}

.btn-volver{
    display:inline-block;
    margin-bottom:20px;
    color:#0c3b2e;
    text-decoration:none;
    font-weight:bold;
}

.tabla{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.tabla th,
.tabla td{
    border:1px solid #ddd;
    padding:12px;
    text-align:left;
}

.tabla th{
    background:#0c3b2e;
    color:white;
}

.tabla tr:nth-child(even){
    background:#f7f7f7;
}

.btn-logout{
    display:inline-block;
    background:#b91c1c;
    color:white;
    padding:10px 16px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    margin-top:10px;
}

.btn-logout:hover{
    background:#7f1d1d;
}

.hero{
    background-image:
        linear-gradient(rgba(0,92,46,0.38), rgba(0,92,46,0.38)),
        url('img/hero.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:90px 20px;

    color:white;

    position:relative;
    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    inset:0;
    backdrop-filter:blur(2px);
}

.hero .container{
    position:relative;
    z-index:2;
}
.overlay{
    background:rgba(0,0,0,0.55);
    width:100%;
    min-height:350px;
    display:flex;
    align-items:center;
}

.hero-title{
    color:white;
    font-size:52px;
    margin-bottom:10px;
}

.hero-subtitle{
    color:#e0e0e0;
    font-size:24px;
    margin-bottom:15px;
}

.hero-text{
    color:white;
    max-width:700px;
    line-height:1.7;
    font-size:18px;
}

.vacante-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:15px;
}

.btn-eliminar{
    display:inline-block;
    background:#b91c1c;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:bold;
    margin-top:8px;
}

.btn-eliminar:hover{
    background:#7f1d1d;
}

.header-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.header-logo{
    width:400px;
    max-height:350px;
    object-fit:contain;
}
.header-solicitud{
    background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,92,46,0.45)),
    url('img/hero.jpg');
    background-size:cover;
    background-position:center;
    padding:55px 20px;

}

.success-card{
    text-align:center;
    padding:60px 40px;
}

.success-icon{
    width:90px;
    height:90px;
    background:#0c8f4f;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    font-weight:bold;
    margin:0 auto 25px;
}

.success-text{
    font-size:18px;
    color:#555;
    max-width:700px;
    margin:20px auto;
    line-height:1.7;
}

.codigo-box{
    background:#f5f5f5;
    border:2px dashed #0c8f4f;
    padding:18px;
    border-radius:12px;
    margin:30px auto;
    max-width:420px;
    font-size:18px;
}

.header-dashboard{
    background-image:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,92,46,0.45)),
        url('img/hero.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    padding:60px 20px;

    color:white;
}

.header-dashboard h1,
.header-dashboard p{
    color:white;
}

.header-dashboard{
    position:relative;
    overflow:hidden;
}

.header-dashboard::before{
    content:'';
    position:absolute;
    inset:0;
    backdrop-filter:blur(2px);
}

.header-dashboard .container{
    position:relative;
    z-index:2;
}

.header-buttons{
    margin-top:20px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.footer-custom{
    background:#001b33;
    color:white;
    padding:70px 20px 30px;
    margin-top:60px;

    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    box-sizing:border-box;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.footer-left{
    max-width:420px;
    line-height:1.9;
    color:#d8d8d8;
}

.footer-right{
    text-align:right;
    color:#ffffff;
}

.footer-right p{
    margin:8px 0;
}

.footer-copy{
    border-top:1px solid rgba(255,255,255,0.12);
    margin-top:45px;
    padding-top:25px;

    text-align:center;

    color:#d0d0d0;
    font-size:14px;
}

.error-icon{
    width:90px;
    height:90px;
    background:#b91c1c;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    font-weight:bold;
    margin:0 auto 25px;
}

.sin-vacantes {
    text-align: center;
    padding: 60px 30px;
    background: #f8f8f8;
    border-radius: 12px;
    margin-top: 20px;
}

.sin-vacantes h3 {
    color: #0a3d2e;
    font-size: 30px;
    margin-bottom: 15px;
}

.sin-vacantes p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.info-postulacion {
    margin-top: 35px;
    padding: 25px;
    background: #f5f8f6;
    border-left: 6px solid #0b8f4d;
    border-radius: 10px;
}

.info-postulacion h3 {
    margin-bottom: 12px;
    color: #0a3d2e;
    font-size: 24px;
}

.info-postulacion p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}