.clickup-timesheet-container {
    max-width: 1250px;
    margin: 40px auto;
    padding: 25px;
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.report-filter-bar {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}
.filter-item { flex: 1 1 180px; display: flex; flex-direction: column; }
.filter-item label { font-weight: 600; font-size: 13px; color: #374151; margin-bottom: 6px; }
.filter-input { padding: 9px 10px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 14px; background: #f9fafb; transition: all 0.2s ease; }
.filter-input:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); background: #fff; }
.filter-btn { background: linear-gradient(90deg, #2563eb, #1d4ed8); color: #fff; border: none; padding: 10px 18px; font-size: 15px; border-radius: 8px; cursor: pointer; font-weight: 600; box-shadow: 0 3px 8px rgba(37,99,235,0.2); transition: all 0.25s ease; width: 100%; }
.filter-btn:hover { background: linear-gradient(90deg, #1e40af, #1d4ed8); transform: translateY(-1px); }
.filter-result { margin-top: 20px; padding: 20px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 12px; min-height: 80px; font-size: 15px; color: #374151; }
@media (max-width: 900px) { .report-filter-bar { flex-direction: column; } }
#clickup-user-filter {
    width: 100%;
    padding: 12px;
    margin: 12px 0 22px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #bbb;
    background-color: #fefefe;
    transition: all 0.3s ease;
}

#clickup-user-filter:focus {
    border-color: #0073ff;
    box-shadow: 0 0 8px rgba(0, 115, 255, 0.3);
}
div#all-users-chart-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.user-chart-block {
    width: 24%;
}
.timesheet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background-color: #eef4ff;
    border: 1px solid #d0d6e0;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.timesheet-filter label {
    font-weight: 600;
}

.timesheet-filter input[type="date"] {
    padding: 8px;
    border: 1px solid #bbb;
    border-radius: 6px;
    min-width: 160px;
    transition: all 0.3s ease;
}

.timesheet-filter input[type="date"]:focus {
    border-color: #0073ff;
    box-shadow: 0 0 6px rgba(0, 115, 255, 0.2);
}

.timesheet-filter button {
    padding: 9px 22px;
    background: linear-gradient(135deg, #0073ff, #0051a8);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timesheet-filter button:hover {
    background: linear-gradient(135deg, #0051a8, #003366);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.week-block {
    background: #ffffff;
    padding: 22px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 6px solid #0073ff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}

.week-block:hover {
    transform: translateY(-3px);
}

.week-block h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #004080;
    font-weight: 700;
}

.week-content {
    display: grid;
    grid-template-columns: minmax(300px, 420px) 1fr;
    gap: 22px;
    align-items: start;
}

.week-chart {
    width: 100%;
    height: 260px;
    position: sticky;
    top: 60px;
    background: #f0f4ff;
    border-radius: 10px;
    border: 1px solid #d0d6e0;
    padding: 12px;
    box-sizing: border-box;
}

.week-chart canvas {
    width: 100% !important;
    height: 100% !important;
}


.week-daily {
    width: 100%;
    overflow-x: auto;
}

.day-block {
    margin-bottom: 22px;
}

.day-block h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #0051a8;
    margin-bottom: 10px;
}


.timesheet-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 520px;
}

.timesheet-table th,
.timesheet-table td {
    padding: 10px 14px;
    text-align: left;
    font-size: 14px;
    line-height: 22px;
}

.timesheet-table th {
    /* background: linear-gradient(135deg, #d0e4ff, #ffffff); */
    background: #d0e4ff;
    font-weight: 700;
    color: #003366;
    border-bottom: 2px solid #0073ff;
}

.timesheet-table td {
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.timesheet-table tbody tr:hover td {
    background-color: #e6f3ff;
}

.timesheet-table a {
    color: #0073ff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.timesheet-table a:hover {
    color: #003366;
    text-decoration: underline;
}


.week-daily::-webkit-scrollbar {
    height: 8px;
}

.week-daily::-webkit-scrollbar-thumb {
    background: #0073ff;
    border-radius: 4px;
}

.week-daily::-webkit-scrollbar-track {
    background: #f1f1f1;
}


.month-chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

/* Individual Month Chart Block */
.month-chart-block {
   background: #f0f4ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #d0d6e0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.month-chart-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.month-chart-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #004080;
    margin-bottom: 15px;
    text-align: center;
}

.month-chart-block canvas {
    width: 100% !important;
    height: 250px !important;
    border-radius: 8px;
}

.chartjs-tooltip {
    background: rgba(0, 115, 255, 0.9) !important;
    color: #fff !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
}

.month-chart-container h4{
    text-align: center;
}

.month-chart-container {
    background: #f0f4ff;
    border-radius: 15px;
    padding: 15px;
}


/* pie chart */
#all-users-chart-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.user-chart-block {
    background: #f0f4ff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.show-value{
    font-size: 12px;
}

@media (max-width: 768px){
    div#all-users-chart-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .user-chart-block {
        width: 100%;
    }
}