*{
    box-sizing:border-box;
}

.hidden{
    display:none;
}

.filtropanel{
    background:#f5f7fb;
    font-family:Arial, Helvetica, sans-serif;
}

/* TOPBAR */

.topbar{
    background:#fff;
    padding:20px;
    border-bottom:1px solid #e5e7eb;
    margin:5px;
}

/* LAYOUT */

.main-container{
    padding-bottom:30px;
}

/* SIDEBAR */

.sidebar{
    margin-bottom:20px;
}

.sidebar-box{
    background:#fff;
    border-radius:12px;
    padding:20px;

    box-shadow:0 2px 8px rgba(0,0,0,0.05);

    position:sticky;
    top:20px;

    max-height:calc(100vh - 200px);

    overflow-y:auto;
    overflow-x:hidden;

}

/* CONTENT */

.content-area{
    padding-bottom:40px;
}

/* HEADER RESULTADOS */

.results-header{
    background:#fff;
    padding:20px;
    border-radius:12px;
    margin-bottom:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* CANDIDATE CARD */

.candidate-card{
    background:#fff;
    border-radius:12px;
    padding:20px;
    margin-bottom:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    transition:0.2s;
}

.candidate-card:hover{
    transform:translateY(-2px);
}

.candidate-meta{
    color:#6b7280;
    margin-top:5px;
}

.candidate-date{
    margin-top:10px;
    font-size:14px;
    color:#9ca3af;
}

/* ACTIONS */

.candidate-actions{
    display:flex;
    gap:10px;
}

.candidate-buttons .action-btn{
    margin-left:8px;
    margin-bottom: 6px;
}

/* PAGINATION */

.pagination-container{
    margin-top:30px;
    display:flex;
    justify-content:center;
}

/*Loader*/
.hidden{
    display:none;
}

.loader-box{
    background:#fff;
    border-radius:12px;
    padding:40px;
    text-align:center;
    margin-bottom:20px;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
}

.loader-spinner{
    width:45px;
    height:45px;
    border:4px solid #ddd;
    border-top:4px solid #337ab7;
    border-radius:50%;
    margin:0 auto 15px auto;

    animation:spin 1s linear infinite;
}

.loader-text{
    color:#666;
    font-size:15px;
}

@keyframes spin{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }

}
/*fin loader */
/* RESPONSIVE */

@media(max-width:991px){

    .candidate-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .candidate-actions{
        margin-top:15px;
    }

}
/*Mostrar video*/
.video-perfil-container {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
}

.video-title {
    margin-top: 0;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    font-size: 17px;
}

.video-title i {
    color: #e74c3c;
    margin-right: 8px;
}

.video-wrapper {
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
    /*width: 50%;
    height: 50%;*/
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Hover effect sutil */
.video-perfil-container:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}
/*Fin Mostrar video*/
