* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

.dashboard-container {
    max-width: 100vw;
    margin: 0;
    padding: 1rem;
    min-height: 100vh;
}

.dashboard-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 1rem 0 2rem;
}

.controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.toggle-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.toggle-btn:active {
    transform: translateY(0);
}

.toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.toggle-btn:hover::before {
    left: 100%;
}

/* View Selector Dropdown */
.view-selector {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    outline: none;
}

.view-selector:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.view-selector option {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px;
}

.time-section {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
    justify-content: center;
    align-items: flex-start;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: cardAppear 0.6s ease-out;
    flex: 1 1 350px;
    min-width: 350px;
    max-width: 500px;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.event-card.overdue {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.5);
    animation: pulse 2s infinite;
}

.event-card.overdue::before {
    background: linear-gradient(90deg, #ff4757, #ff3838);
}

.event-header {
    margin-bottom: 1.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.event-description {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.event-category {
    position: absolute;
    bottom: 1.5rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.countdown-display {
    text-align: center;
    margin-top: 1.5rem;
}

.countdown-simple {
    font-size: 2rem;
    font-weight: bold;
    color: #feca57;
    text-shadow: 0 0 20px rgba(254, 202, 87, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.countdown-detailed {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.time-unit {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    min-width: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.time-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #feca57;
    text-shadow: 0 0 15px rgba(254, 202, 87, 0.5);
    animation: flipIn 0.6s ease-in-out;
}

.time-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-style: italic;
}

/* Category-specific colors */
.category-end-of-support {
    border-left: 5px solid #ff6b6b;
}

.category-new-hospital {
    border-left: 5px solid #4ecdc4;
}

.category-general {
    border-left: 5px solid #45b7d1;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(254, 202, 87, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(254, 202, 87, 0.8), 0 0 40px rgba(254, 202, 87, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 107, 0.5), 0 0 30px rgba(255, 107, 107, 0.3);
    }
}

@keyframes flipIn {
    from {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    to {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .countdown-detailed {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .time-unit {
        min-width: 50px;
    }
}

/* Hidden sections */
.time-section.hidden {
    display: none;
}

/* ===== CAROUSEL STYLES ===== */

/* Carousel Navigation */
.carousel-navigation {
    display: none; /* Hidden by default, shown when carousel is active */
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.carousel-navigation.active {
    display: flex;
}

/* Carousel Header */
.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
}

.carousel-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #feca57;
    margin: 0;
    text-shadow: 0 0 10px rgba(254, 202, 87, 0.3);
}

.carousel-mode-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-mode-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-time-periods,
.nav-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Carousel Progress Bar */
.carousel-progress-container {
    display: none; /* Hidden by default, shown when carousel is active */
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-progress-container.active {
    display: block;
}

.carousel-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 100%;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
    animation: gradientShift 3s ease-in-out infinite;
}

/* Carousel Container */
.carousel-container {
    display: none; /* Hidden by default, shown when carousel is active */
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-container.active {
    display: block;
}

.carousel-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 700%; /* 7 slides x 100% */
}

.carousel-slide {
    width: 14.2857%; /* 100% / 7 slides */
    flex-shrink: 0;
    padding: 2rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.carousel-slide .section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
    animation: slideInDown 0.8s ease-out;
}

.carousel-slide .events-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
}

/* Static View (default) */
.static-view {
    display: block; /* Shown by default */
}

.static-view.hidden {
    display: none; /* Hidden when carousel is active */
}

/* Carousel slide entrance animations */
.carousel-slide.entering .event-card {
    animation: slideInFromRight 0.6s ease-out forwards;
}

.carousel-slide.exiting .event-card {
    animation: slideOutToLeft 0.4s ease-in forwards;
}

/* Empty slide styling */
.carousel-slide:empty::before,
.carousel-slide .events-grid:empty::before {
    content: "No events in this time period";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.6;
    font-style: italic;
    height: 200px;
}

/* Additional carousel animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutToLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive carousel adjustments */
@media (max-width: 768px) {
    .carousel-slide .events-grid {
        grid-template-columns: 1fr;
    }

    .carousel-nav-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .carousel-slide {
        padding: 1rem;
    }
}

/* ===== GANTT CHART STYLES ===== */

/* Gantt View Container */
.gantt-view {
    display: none; /* Hidden by default */
    width: 100%;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gantt-view.active {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

/* Gantt Header */
.gantt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gantt-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    margin: 0;
}

.gantt-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gantt-zoom-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gantt-zoom-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gantt-zoom-btn.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-color: transparent;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Gantt Container */
.gantt-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline Header */
.gantt-timeline-header {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gantt-category-header {
    width: 200px;
    padding: 1rem;
    font-weight: bold;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    left: 0;
    z-index: 10;
}

.gantt-timeline-scale {
    flex: 1;
    display: flex;
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.1);
}

/* Gantt Body */
.gantt-body {
    display: flex;
    max-height: 60vh;
    overflow-y: auto;
}

.gantt-categories {
    width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    left: 0;
    z-index: 10;
}

.gantt-timeline {
    flex: 1;
    position: relative;
    overflow-x: auto;
}

/* Category Rows */
.gantt-category-row {
    height: 60px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
}

.gantt-category-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.gantt-category-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Timeline Grid */
.gantt-timeline-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gantt-grid-column {
    position: absolute;
    top: 0;
    bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    width: 1px;
}

.gantt-grid-column.major {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

/* Timeline Scale */
.gantt-scale-item {
    min-width: 80px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.gantt-scale-item.major {
    background: rgba(255, 255, 255, 0.05);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

/* Event Bars */
.gantt-events {
    position: relative;
    z-index: 5;
}

.gantt-event-bar {
    position: absolute;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gantt-event-bar:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Category-specific event bar colors */
.gantt-event-bar.category-end-of-support {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.6));
    border-color: rgba(255, 107, 107, 0.9);
}

.gantt-event-bar.category-new-hospital {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(78, 205, 196, 0.6));
    border-color: rgba(78, 205, 196, 0.9);
}

.gantt-event-bar.category-general {
    background: linear-gradient(135deg, rgba(69, 183, 209, 0.8), rgba(69, 183, 209, 0.6));
    border-color: rgba(69, 183, 209, 0.9);
}

.gantt-event-bar.category-oriel {
    background: linear-gradient(135deg, rgba(150, 206, 180, 0.8), rgba(150, 206, 180, 0.6));
    border-color: rgba(150, 206, 180, 0.9);
}

.gantt-event-bar.category-1gs {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.8), rgba(254, 202, 87, 0.6));
    border-color: rgba(254, 202, 87, 0.9);
}

.gantt-event-bar.category-licensing {
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.8), rgba(162, 155, 254, 0.6));
    border-color: rgba(162, 155, 254, 0.9);
}

.gantt-event-bar.category-epr {
    background: linear-gradient(135deg, rgba(255, 154, 162, 0.8), rgba(255, 154, 162, 0.6));
    border-color: rgba(255, 154, 162, 0.9);
}

.gantt-event-bar.category-ict-transition {
    background: linear-gradient(135deg, rgba(181, 131, 141, 0.8), rgba(181, 131, 141, 0.6));
    border-color: rgba(181, 131, 141, 0.9);
}

.gantt-event-bar.overdue {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.9), rgba(255, 71, 87, 0.7));
    border-color: rgba(255, 71, 87, 1);
    animation: gantPulse 2s infinite;
}

/* Event Tooltip */
.gantt-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    max-width: 250px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gantt-tooltip.visible {
    opacity: 1;
}

.gantt-tooltip-title {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #feca57;
}

.gantt-tooltip-description {
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.gantt-tooltip-date {
    font-size: 0.7rem;
    opacity: 0.7;
    font-style: italic;
}

/* Today Indicator */
.gantt-today-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6b6b, #4ecdc4);
    z-index: 15;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.gantt-today-line::before {
    content: 'TODAY';
    position: absolute;
    top: -25px;
    left: -20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Gantt Animations */
@keyframes gantPulse {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.6), 0 0 20px rgba(255, 71, 87, 0.4);
    }
}

/* Responsive Gantt Adjustments */
@media (max-width: 1024px) {
    .gantt-category-header,
    .gantt-categories {
        width: 150px;
    }
    
    .gantt-scale-item {
        min-width: 60px;
        font-size: 0.7rem;
    }
    
    .gantt-event-bar {
        height: 25px;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .gantt-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .gantt-controls {
        justify-content: center;
    }
    
    .gantt-category-header,
    .gantt-categories {
        width: 120px;
    }
    
    .gantt-category-row {
        height: 50px;
        font-size: 0.8rem;
    }
    
    .gantt-event-bar {
        height: 20px;
        font-size: 0.6rem;
        padding: 0 0.3rem;
    }
    
    .gantt-scale-item {
        min-width: 50px;
        font-size: 0.6rem;
    }
}