*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#f3f4f6;

    overflow-x:hidden;

}

/*
==========================
LAYOUT
==========================
*/

.app-layout{

    display:flex;

    min-height:100vh;

}

/*
==========================
SIDEBAR
==========================
*/

.sidebar{

    width:260px;

    background:#0f172a;

    color:white;

    position:fixed;

    top:0;
    left:0;

    height:100vh;

    z-index:1000;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    padding:20px;

    transition:0.3s;

}

.sidebar-top{

    display:flex;
    flex-direction:column;

}

.sidebar-logo{

    margin-bottom:35px;

}

.sidebar-logo h2{

    font-size:34px;

}

.sidebar a{

    color:white;

    text-decoration:none;

    padding:15px 18px;

    border-radius:14px;

    margin-bottom:10px;

    transition:0.2s;

    font-size:15px;

}

.sidebar a:hover{

    background:#1e293b;

}

.sidebar-user{

    border-top:1px solid rgba(255,255,255,0.1);

    padding-top:20px;

    display:flex;

    align-items:center;

    gap:12px;

}

.sidebar-user-info{

    display:flex;
    flex-direction:column;

}

.sidebar-user-info strong{

    font-size:14px;

}

.sidebar-user-info span{

    font-size:12px;

    opacity:0.7;

}

/*
==========================
AVATAR
==========================
*/

.avatar-user{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#2563eb;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:bold;

    color:white;

}

/*
==========================
MAIN CONTENT
==========================
*/

.main-content{

    flex:1;

    margin-left:260px;

    width:100%;

}

/*
==========================
TOPBAR
==========================
*/

.topbar{

    height:85px;

    background:white;

    border-bottom:1px solid #e5e7eb;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 30px;

    position:sticky;

    top:0;

    z-index:100;

}

.topbar-left{

    display:flex;

    align-items:center;

    gap:15px;

}

.topbar-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.topbar-user{

    display:flex;

    align-items:center;

    gap:12px;

}

.topbar-user-info{

    display:flex;
    flex-direction:column;

    text-align:right;

}

.topbar-user-info span{

    font-size:12px;

    opacity:0.7;

}

.empresa-logo{

    width:50px;
    height:50px;

    object-fit:contain;

}

/*
==========================
MENU BTN
==========================
*/

.menu-btn{

    display:none;

    width:45px;
    height:45px;

    border:none;

    border-radius:12px;

    background:#f3f4f6;

    cursor:pointer;

    font-size:20px;

}

/*
==========================
PAGE
==========================
*/

.page-container{

    padding:30px;

}

/*
==========================
HEADERS
==========================
*/

.dashboard-header,
.page-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

/*
==========================
WELCOME
==========================
*/

.dashboard-welcome{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.dashboard-company{

    display:flex;

    align-items:center;

    gap:20px;

}

.dashboard-company-logo{

    width:70px;
    height:70px;

    object-fit:contain;

    background:white;

    padding:10px;

    border-radius:18px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

}

.dashboard-company h1{

    font-size:32px;

    margin-bottom:5px;

}

.dashboard-company p{

    color:#6b7280;

    font-size:16px;

}

/*
==========================
CARDS
==========================
*/

.dashboard-cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:30px;

}

.card{

    background:white;

    padding:25px;

    border-radius:24px;

    box-shadow:0 2px 10px rgba(0,0,0,0.04);

}

.card h3{

    margin-bottom:10px;

    color:#6b7280;

}

.card p{

    font-size:30px;

    font-weight:bold;

}

/*
==========================
CLOCK WIDGET
==========================
*/

.clock-widget{

    background:white;

    border-radius:24px;

    padding:40px;

    text-align:center;

}

.clock-widget h2{

    font-size:60px;

    margin-bottom:20px;

}

.clock-link{

    display:inline-block;

    margin-top:20px;

    background:#2563eb;

    color:white;

    padding:14px 24px;

    border-radius:14px;

    text-decoration:none;

}

/*
==========================
BUTTONS
==========================
*/

.add-btn,
.logout-btn{

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:12px 18px;

    border-radius:14px;

    border:none;

    cursor:pointer;

}

.logout-btn{

    background:#dc2626;

}

/*
==========================
TABLES
==========================
*/

.table-container{

    background:white;

    border-radius:24px;

    padding:20px;

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

}

table th,
table td{

    padding:15px;

    text-align:left;

    border-bottom:1px solid #e5e7eb;

}

table th{

    background:#f9fafb;

}

/*
==========================
FORMS
==========================
*/

.form-box{

    background:white;

    padding:30px;

    border-radius:24px;

    display:flex;

    flex-direction:column;

    gap:15px;

    max-width:700px;

}

.form-box input{

    padding:15px;

    border:1px solid #d1d5db;

    border-radius:14px;

}

.form-box button{

    background:#2563eb;

    color:white;

    border:none;

    padding:15px;

    border-radius:14px;

    cursor:pointer;

}

/*
==========================
LOGIN
==========================
*/

.login-body{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:100vh;

}

.login-container{

    width:400px;

    background:white;

    padding:40px;

    border-radius:24px;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);

}

.login-logo{

    width:100px;

    display:block;

    margin:0 auto 20px auto;

}

.login-container h1{

    text-align:center;

    margin-bottom:30px;

}

.login-container input{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #d1d5db;

    border-radius:14px;

}

.login-container button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:14px;

    background:#2563eb;

    color:white;

    cursor:pointer;

}

/*
==========================
ERROR BOX
==========================
*/

.error-box{

    background:#fee2e2;

    color:#991b1b;

    padding:15px;

    border-radius:14px;

    margin-bottom:20px;

}

/*
==========================
PROFILE
==========================
*/

.profile-card{

    background:white;

    border-radius:24px;

    padding:40px;

}

.profile-header{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:40px;

}

.profile-avatar{

    width:100px;
    height:100px;

    border-radius:50%;

    background:#2563eb;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:38px;
    font-weight:bold;

}

.profile-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.profile-item{

    background:#f9fafb;

    padding:20px;

    border-radius:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.profile-item span{

    color:#6b7280;

    font-size:14px;

}

/*
==========================
FICHAJES
==========================
*/

.fichaje-box{

    background:white;

    border-radius:24px;

    padding:35px;

    margin-bottom:30px;

}

.fichaje-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

}

.live-hour{

    font-size:52px;

    font-weight:bold;

    color:#2563eb;

}

.fichaje-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.fichaje-btn{

    border:none;

    padding:16px 26px;

    border-radius:14px;

    color:white;

    cursor:pointer;

    font-size:15px;

    font-weight:bold;

}

.start-btn{

    background:#16a34a;

}

.warning-btn{

    background:#ea580c;

}

.end-btn{

    background:#dc2626;

}

.today-summary{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:25px;

}

.summary-card{

    background:white;

    padding:20px 25px;

    border-radius:18px;

    display:flex;

    flex-direction:column;

    gap:10px;

}

.summary-card span{

    color:#6b7280;

}

.summary-card strong{

    font-size:28px;

}

.history-btn{

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:14px 22px;

    border-radius:14px;

    font-weight:bold;

}

.history-modern{

    background:white;

    border-radius:24px;

    padding:30px;

}

.history-header{

    margin-bottom:25px;

}

.time-range{

    background:#f9fafb;

    padding:18px 20px;

    border-radius:14px;

    margin-bottom:14px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.time-range strong{

    font-size:16px;

}

/*
==========================
RESPONSIVE
==========================
*/

@media(max-width:900px){

    .sidebar{

        left:-260px;

    }

    .sidebar.active{

        left:0;

    }

    .main-content{

        margin-left:0;

    }

    .menu-btn{

        display:block;

    }

    .dashboard-cards{

        grid-template-columns:1fr;

    }

    .profile-grid{

        grid-template-columns:1fr;

    }

    .topbar-user-info{

        display:none;

    }

}

@media(max-width:700px){

    .dashboard-company{

        flex-direction:column;

        align-items:flex-start;

    }

    .fichaje-top{

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

    .today-summary{

        flex-direction:column;

        align-items:flex-start;

    }

    .live-hour{

        font-size:34px;

    }

    .time-range{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }

}

@media(max-width:600px){

    .topbar{

        height:auto;

        padding:15px;

        flex-direction:column;

        align-items:flex-start;

        gap:15px;

    }

    .topbar-right{

        width:100%;

        justify-content:space-between;

    }

    .page-container{

        padding:20px;

    }

    .login-container{

        width:90%;

        padding:30px 20px;

    }

}
.filters-box{

    display:flex;

    gap:15px;

    margin-bottom:30px;

    flex-wrap:wrap;

}

.filters-box input{

    padding:14px;

    border:1px solid #d1d5db;

    border-radius:14px;

    background:white;

}

.filters-box button{

    background:#2563eb;

    color:white;

    border:none;

    padding:14px 20px;

    border-radius:14px;

    cursor:pointer;

}

.reset-btn{

    background:#e5e7eb;

    color:#111827;

    text-decoration:none;

    padding:14px 20px;

    border-radius:14px;

}

.day-card{

    background:#f9fafb;

    border-radius:18px;

    padding:20px;

    margin-bottom:20px;

}

.day-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.day-total{

    background:#2563eb;

    color:white;

    padding:10px 16px;

    border-radius:12px;

    font-weight:bold;

}

.empty-box{

    background:white;

    padding:40px;

    border-radius:20px;

    text-align:center;

    color:#6b7280;

}

.calendar-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    gap:20px;

}

.calendar-filters{

    display:flex;

    gap:12px;

}

.calendar-filters select,
.calendar-filters button{

    padding:12px 16px;

    border-radius:12px;

    border:1px solid #d1d5db;

    background:white;

}

.calendar-filters button{

    background:#2563eb;

    color:white;

    border:none;

    cursor:pointer;

}

.calendar-box{

    background:white;

    border-radius:24px;

    padding:25px;

}

.calendar-grid{

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:12px;

}

.calendar-days{

    margin-bottom:12px;

}

.calendar-days div{

    text-align:center;

    font-weight:bold;

    color:#6b7280;

}

.calendar-day{

    background:#f9fafb;

    border-radius:18px;

    min-height:110px;

    padding:12px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.calendar-day.today{

    background:#2563eb;

    color:white;

}

.calendar-number{

    font-size:18px;

    font-weight:bold;

}

.calendar-hours{

    font-size:14px;

    opacity:0.8;

}

.calendar-day.empty{

    background:transparent;

}

@media(max-width:700px){

    .calendar-grid{

        gap:6px;

    }

    .calendar-day{

        min-height:80px;

        padding:8px;

    }

    .calendar-number{

        font-size:14px;

    }

    .calendar-hours{

        font-size:11px;

    }

    .calendar-header{

        flex-direction:column;

        align-items:flex-start;

    }

}
.requests-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.request-card{

    background:white;

    border-radius:20px;

    padding:25px;

}

.request-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.request-top span{

    color:#6b7280;

    font-size:14px;

}

.request-status{

    padding:10px 14px;

    border-radius:12px;

    color:white;

    font-size:13px;

    font-weight:bold;

}

.status-pendiente{

    background:#ea580c;

}

.status-aprobada{

    background:#16a34a;

}

.status-rechazada{

    background:#dc2626;

}

.request-actions{

    display:flex;

    gap:10px;

    margin-top:20px;

}

.approve-btn,
.reject-btn{

    padding:12px 16px;

    border-radius:12px;

    color:white;

    text-decoration:none;

    font-size:14px;

}

.approve-btn{

    background:#16a34a;

}

.reject-btn{

    background:#dc2626;

}

.form-box select,
.form-box textarea{

    padding:15px;

    border:1px solid #d1d5db;

    border-radius:14px;

}

.form-box textarea{

    min-height:120px;

    resize:none;

}

@media(max-width:700px){

    .requests-grid{

        grid-template-columns:1fr;

    }

}
.delete-btn{

    background:#dc2626;

    color:white;

    text-decoration:none;

    padding:12px 16px;

    border-radius:12px;

    font-size:14px;

}
.employees-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:20px;

}

.employee-card{

    background:white;

    border-radius:24px;

    padding:25px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

}

.employee-top{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.employee-avatar{

    width:60px;
    height:60px;

    border-radius:50%;

    background:#2563eb;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:bold;

}

.employee-top h3{

    margin-bottom:5px;

    font-size:22px;

}

.employee-top span{

    color:#6b7280;

    font-size:14px;

}

.employee-info{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-bottom:25px;

}

.employee-info p{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

}

.employee-actions{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

}

.edit-btn{

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:12px 16px;

    border-radius:12px;

    font-size:14px;

}

.delete-btn{

    background:#dc2626;

    color:white;

    text-decoration:none;

    padding:12px 16px;

    border-radius:12px;

    font-size:14px;

}

.status-active{

    background:#16a34a;

    color:white;

    padding:6px 10px;

    border-radius:10px;

    font-size:12px;

    font-weight:bold;

}

.status-inactive{

    background:#dc2626;

    color:white;

    padding:6px 10px;

    border-radius:10px;

    font-size:12px;

    font-weight:bold;

}

@media(max-width:700px){

    .employee-card{

        padding:20px;

    }

}
.schedule-table{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.schedule-row{

    background:#f9fafb;

    padding:20px;

    border-radius:18px;

    display:grid;

    grid-template-columns:180px repeat(4,1fr);

    gap:15px;

    align-items:center;

}

.schedule-row h3{

    font-size:16px;

}

@media(max-width:900px){

    .schedule-row{

        grid-template-columns:1fr;

    }

}
/*INFORMES*/
/*
==========================
REPORTS
==========================
*/

.reports-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));

    gap:20px;

}

.report-card{

    background:white;

    border-radius:24px;

    padding:25px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

}

.report-header{

    margin-bottom:25px;

}

.report-header h3{

    font-size:24px;

}

.employee-report-label{

    color:#6b7280;

    margin-bottom:6px;

    font-size:14px;

}

.report-actions{

    margin-bottom:25px;

}

.print-btn{

    background:#111827;

    color:white;

    border:none;

    padding:14px 20px;

    border-radius:14px;

    cursor:pointer;

    font-weight:bold;

}

.report-days{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.report-day-row{

    background:#f9fafb;

    padding:16px;

    border-radius:14px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:15px;

}

.report-total{

    margin-top:15px;

    padding-top:15px;

    border-top:2px solid #e5e7eb;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.report-total strong{

    font-size:22px;

}

/*
==========================
PRINT HEADER
==========================
*/

.print-header{

    background:white;

    border-radius:24px;

    padding:30px;

    margin-bottom:30px;

}

.print-company{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:20px;

}

.print-logo{

    width:90px;

    height:90px;

    object-fit:contain;

}

.print-company h1{

    font-size:32px;

    margin-bottom:5px;

}

.print-company p{

    color:#6b7280;

}

.print-dates{

    font-size:15px;

    color:#374151;

}

/*
==========================
PRINT A4
==========================
*/

@page{

    size:A4;

    margin:20mm;

}

@media print{

    body{

        background:white !important;

    }

    .sidebar,
    .topbar,
    .filters-box,
    .print-btn,
    .page-header,
    .no-print{

        display:none !important;

    }

    .main-content{

        margin-left:0 !important;

        width:100%;

    }

    .page-container{

        padding:0;

    }

    .reports-grid{

        grid-template-columns:1fr;

    }

    .report-card{

        width:100%;

        box-shadow:none;

        border:1px solid #d1d5db;

        margin-bottom:20px;

        page-break-inside:avoid;

    }

    .print-header{

        border:1px solid #d1d5db;

        margin-bottom:30px;

    }

}
.request-dates{

    margin:15px 0;

    color:#374151;

    font-size:14px;

}

.request-comment{

    background:#f9fafb;

    padding:16px;

    border-radius:14px;

    margin-top:15px;

    line-height:1.6;

}
.dashboard-hero{

    background:white;

    border-radius:28px;

    padding:35px;

    margin-bottom:30px;

}

.dashboard-company{

    display:flex;

    align-items:center;

    gap:25px;

}

.dashboard-company-logo{

    width:90px;

    height:90px;

    object-fit:contain;

    border-radius:18px;

    background:#f9fafb;

    padding:10px;

}

.dashboard-company h1{

    font-size:38px;

    margin-bottom:6px;

}

.dashboard-company p{

    color:#6b7280;

    font-size:16px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:20px;

    margin-bottom:30px;

}

.stat-card{

    background:white;

    border-radius:24px;

    padding:30px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

}

.stat-card span{

    color:#6b7280;

    display:block;

    margin-bottom:15px;

}

.stat-card h2{

    font-size:42px;

}

.dashboard-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.dashboard-box{

    background:white;

    border-radius:24px;

    padding:30px;

}

.dashboard-box-header{

    margin-bottom:25px;

}

.dashboard-box-header h3{

    font-size:24px;

}

.quick-links{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

}

.quick-links a{

    background:#f9fafb;

    padding:18px;

    border-radius:16px;

    text-decoration:none;

    color:#111827;

    font-weight:600;

    transition:0.2s;

}

.quick-links a:hover{

    background:#2563eb;

    color:white;

}

.last-records{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.record-item{

    background:#f9fafb;

    padding:18px;

    border-radius:16px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.record-item span{

    display:block;

    margin-top:5px;

    color:#6b7280;

    font-size:14px;

}

@media(max-width:900px){

    .dashboard-grid{

        grid-template-columns:1fr;

    }

    .quick-links{

        grid-template-columns:1fr;

    }

    .dashboard-company{

        flex-direction:column;

        align-items:flex-start;

    }

}
.companies-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(360px,1fr));

    gap:20px;

}

.company-card{

    background:white;

    border-radius:26px;

    padding:28px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

}

.company-top{

    display:flex;

    gap:20px;

    align-items:center;

    margin-bottom:25px;

}

.company-logo-box{

    width:80px;

    height:80px;

    border-radius:18px;

    background:#f9fafb;

    display:flex;

    align-items:center;

    justify-content:center;

}

.company-logo{

    width:70px;

    height:70px;

    object-fit:contain;

}

.company-letter{

    font-size:28px;

    font-weight:bold;

    color:#2563eb;

}

.company-top h3{

    font-size:24px;

    margin-bottom:5px;

}

.company-top p{

    color:#6b7280;

}

.company-plan{

    margin-bottom:25px;

}

.plan-badge{

    color:white;

    padding:10px 16px;

    border-radius:12px;

    font-size:14px;

    font-weight:bold;

}

.company-stats{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

}

.company-stats span{

    display:block;

    color:#6b7280;

    margin-bottom:6px;

}

.company-stats strong{

    font-size:22px;

}

.company-actions{

    display:flex;

    gap:12px;

}

@media(max-width:700px){

    .company-stats{

        flex-direction:column;

        gap:15px;

    }

}
.mt-20{

    margin-top:20px;

}

.plans-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.plan-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#f9fafb;

    padding:16px;

    border-radius:14px;

}

.plan-left{

    display:flex;

    align-items:center;

    gap:12px;

}

.plan-dot{

    width:16px;

    height:16px;

    border-radius:50%;

}
.plans-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));

    gap:20px;

}

.plan-card{

    background:white;

    border-radius:26px;

    padding:28px;

    position:relative;

    overflow:hidden;

}

.plan-color{

    width:100%;

    height:8px;

    border-radius:20px;

    margin-bottom:25px;

}

.plan-card h2{

    font-size:32px;

    margin-bottom:20px;

}

.plan-price{

    font-size:42px;

    font-weight:bold;

    margin-bottom:25px;

}

.plan-price span{

    font-size:16px;

    color:#6b7280;

}

.plan-limit{

    margin-bottom:20px;

    color:#374151;

}

.plan-limit strong{

    font-size:24px;

}

.plan-status{

    margin-bottom:25px;

    display:inline-block;

    padding:10px 16px;

    border-radius:12px;

    background:#f3f4f6;

}

.plan-actions{

    display:flex;

    gap:12px;

}.profile-card{

    background:white;

    border-radius:28px;

    padding:35px;

    max-width:700px;

}

.profile-top{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:35px;

}

.profile-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#2563eb;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:bold;

}

.profile-top h1{

    font-size:34px;

    margin-bottom:5px;

}

.profile-top p{

    color:#6b7280;

}

.success-box{

    background:#dcfce7;

    color:#166534;

    padding:16px;

    border-radius:14px;

    margin-bottom:20px;

}
.timeline-fichajes{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.timeline-item{

    background:#f9fafb;

    border-radius:16px;

    padding:16px 18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.timeline-left{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.timeline-left span{

    color:#6b7280;

    font-size:13px;

}

.timeline-hour{

    font-size:22px;

    font-weight:bold;

    color:#111827;

}

.timeline-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 14px;

    border-radius:12px;

    font-size:13px;

    font-weight:bold;

    color:white;

    width:max-content;

}

.timeline-entrada{

    background:#16a34a;

}

.timeline-salida{

    background:#dc2626;

}

.timeline-descanso{

    background:#ea580c;

}

.timeline-fin{

    background:#2563eb;

}

@media(max-width:700px){

    .timeline-item{

        flex-direction:column;

        align-items:flex-start;

        gap:14px;

    }

}
.dashboard-clock{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    min-height:320px;

    text-align:center;

}

#clock{

    font-size:78px;

    font-weight:bold;

    color:#111827;

    margin-bottom:25px;

    letter-spacing:2px;

}

.dashboard-clock p{

    font-size:22px;

    margin-bottom:30px;

    color:#374151;

}

.dashboard-clock strong{

    color:#111827;

}

.go-fichajes-btn{

    background:#2563eb;

    color:white;

    padding:18px 30px;

    border-radius:18px;

    font-size:18px;

    font-weight:bold;

    transition:0.2s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.go-fichajes-btn:hover{

    background:#1d4ed8;

}

@media(max-width:700px){

    #clock{

        font-size:54px;

    }

    .dashboard-clock p{

        font-size:18px;

    }

}
.profile-hero{

    background:white;

    border-radius:30px;

    overflow:hidden;

    margin-bottom:30px;

}

.profile-cover{

    height:180px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

}

.profile-main{

    padding:0 40px 40px;

    display:flex;

    align-items:flex-end;

    gap:25px;

    margin-top:-60px;

}

.profile-avatar-big{

    width:130px;

    height:130px;

    border-radius:50%;

    background:white;

    border:6px solid white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:54px;

    font-weight:bold;

    color:#2563eb;

    box-shadow:0 4px 12px rgba(0,0,0,0.08);

}

.profile-info h1{

    font-size:42px;

    margin-bottom:8px;

}

.profile-info p{

    color:#6b7280;

    margin-bottom:15px;

    font-size:18px;

}

.profile-company{

    display:flex;

    align-items:center;

    gap:12px;

}

.profile-company img{

    width:40px;

    height:40px;

    object-fit:contain;

}

.profile-company span{

    font-weight:bold;

}

.profile-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.profile-box{

    background:white;

    border-radius:26px;

    padding:30px;

}

.profile-data{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.profile-data span{

    display:block;

    color:#6b7280;

    margin-bottom:6px;

}

.profile-data strong{

    font-size:20px;

}

@media(max-width:900px){

    .profile-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:700px){

    .profile-main{

        flex-direction:column;

        align-items:flex-start;

        padding:0 25px 30px;

    }

    .profile-info h1{

        font-size:32px;

    }

}