   <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Onest', Helvetica, Arial, sans-serif;
            background: white;
            padding: 40px;
            min-height: 100vh;
        }
        .container {
            margin: 0 auto;
        }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }
        h1 {
            color: #2c3e50;
            font-size: 28px;
            font-weight: 600;
        }

        .stats {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .stat-card {
            background: #0058D2;
            color: white;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stat-label {
            font-size: 12px;
            opacity: 0.9;
            margin-bottom: 4px;
        }
        .stat-value {
            font-size: 24px;
            font-weight: 700;
        }
        .table-wrapper {
            overflow-x: auto;
        }
        table {
            border-collapse: collapse;
            width: 100%;
            background: white;
        }
        th, td {
            border: 1px solid #e9ecef;
            text-align: center;
        }
        th.name-header {
            position: sticky;
            left: 0;
			background: #669BE4;
			color: white;
            z-index: 11;
            min-width: 180px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 15px;
        }
        th.week-header {
			background: #669BE4;
            color: white;
            font-weight: 700;
            font-size: 13px;
            padding: 8px;
        }
        td.name-cell {
            position: sticky;
            left: 0;
            background: #f8f9fa;
            z-index: 10;
            min-width: 180px;
            text-align: left;
            font-weight: 500;
            border-right: 1px solid #aaa;
            padding: 7px 10px; font-size: 14px;
        }
        .date-header {
            background: #99BCED;
            color: white;
            font-size: 11px;
            padding: 6px 4px;
/*			transform: rotate(90deg);*/
            font-weight: 500;
        }
        .weekend {
			background: #CCDEF6;
        }
        .week-separator {
            border-right: 1px solid #aaa !important;
        }
        .concediu-anual {
            background-color: #68C199;
            border-left: 1px solid #b2b2b2;
;
        }
.today {
    position: relative;
}

.today::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: red;
    z-index: 1;
}		.concediu-boala {
            background-color: #F97066;
            border-left: 1px solid #b2b2b2;
        }
        .concediu-neplatit {
            background-color: #b2b2b2;
            border-left: 1px solid #b2b2b2;
        }
        .lucru-distanta {
            background-color: #CBAFFD;
            border-left: 1px solid #b2b2b2;
        }
        .ore-libere {
            background-color: #FEC84B;
            border-left: 1px solid #1976d2;
        }
		.deplasare {
            background-color: #CBAFFD;
            border-left: 1px solid #b2b2b2;
        }
        .available {
            background-color: white;
        }
        .paternal {
            background-color: yellowgreen;
        }
        /* Custom tooltip */
        [data-tooltip] {
            position: relative;
        }
        [data-tooltip]:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            white-space: nowrap;
            font-size: 11px;
            z-index: 1000;
            pointer-events: none;
            margin-bottom: 5px;
        }
        [data-tooltip]:hover::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            pointer-events: none;
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #7f8c8d;
            font-size: 18px;
        }
        .error {
            background: #fee;
            border: 2px solid #f88;
            color: #c00;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        @media print {
            body {
                background: white;
                padding: 0;
            }
        }
    </style>