        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #0e0e0e;
            color: #fff;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            width: 200px;
            height: 100vh;
            background-color: #131313;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sidebar ul {
            top: 20vh;
            position: relative;
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .sidebar li {
            margin-bottom: 20px;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .sidebar button {
            background: #131313;
            border: none;
            border-radius: 0 10px 10px 0;
            padding: 10px;
            width: 100%;
            cursor: pointer;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            color: #f1f1f1;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .sidebar button span.material-icons {
            font-size: 24px;
            color: #f1f1f1;
        }

        .sidebar button span:last-child {
            font-size: 14px;
        }

        .sidebar button.active {
            background: #474747;
            color: #fff;
        }

        .sidebar .indicator {
            position: absolute;
            left: -4px;
            width: 4px;
            background: #f1f1f1;
            transition: top 0.3s ease, height 0.3s ease;
            z-index: 10;
        }

        .sidebar .home-button {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            background-color: #131313;
            border: 1px solid #fff;
            border-radius: 5px;
            padding: 10px 12px;
            color: #fff;
            font-size: 16px;
            text-align: left;
            width: 100%;
            cursor: pointer;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            gap: 10px;
        }

        .sidebar .home-button span {
            display: inline-block;
        }

        .sidebar .home-button span.material-symbols-outlined {
            font-size: 30px;
            position: absolute;
            left: 30px;
        }

        .sidebar .home-button span:nth-child(2) {
            flex: 1;
            text-align: center;
        }

        .sidebar .home-button:hover {
            background-color: #474747;
        }

        .main {
            margin-left: 220px;
            padding: 0 0 20px 20px;
        }

        .sticky {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: #0e0e0e;
            padding: 20px 20px 10px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .chips {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            transition: margin 0.3s ease;
        }

        .chips2 {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
        }

        .chip {
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            white-space: nowrap;
            font-size: 14px;
            user-select: none;
            transition: background-color 0.3s, border-color 0.3s, color 0.3s,
                padding 0.3s ease, font-size 0.3s ease;
        }

        .chip2 {
            padding: 8px 12px;
            border-radius: 4px;
            cursor: default;
            white-space: nowrap;
            font-size: 14px;
            user-select: none;
            transition: background-color 0.3s, border-color 0.3s, color 0.3s,
                padding 0.3s ease, font-size 0.3s ease;
        }

        .section {
            height: 80vh;
            border-bottom: 1px solid #ccc;
            padding: 20px 0 20px 20px;
            width: 98%;
        }

        .datepicker-toggle {
            display: inline-flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            background-color: #131313;
            cursor: pointer;
            padding: 8px 12px;
            width: 245px;
            border: 2px solid #fff;
            border-radius: 7px;
            color: #fff;
            transition: border-width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
        }

        .datepicker-toggle2 {
            display: inline-flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            background-color: #131313;
            cursor: default;
            padding: 8px 12px;
            margin-bottom: 20px;
            width: 245px;
            border: 2px solid #fff;
            border-radius: 7px;
            color: #fff;
            user-select: none;
            transition: border-width 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
        }

        .datepicker-toggle span {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #fff;
            transition: font-size 0.3s ease;
        }

        .datestyle {
            background-color: #131313;
            color: #fff;
            border: none;
            height: 100%;
            width: 100%;
            cursor: pointer;
            font-size: 15px;
            appearance: none;
            transition: font-size 0.3s ease;
        }

        .datestyle2 {
            background-color: #131313;
            color: #fff;
            border: none;
            height: 100%;
            width: 100%;
            cursor: default;
            font-size: 15px;
            user-select: none;
            transition: font-size 0.3s ease;
        }

        .datepicker-toggle input::-webkit-calendar-picker-indicator {
            display: none;
        }

        #question {
            position: relative;
            display: flex;
            margin-top: auto;
            margin-bottom: auto;
            cursor: pointer;
            font-size: 28px;
            user-select: none;
            transition: font-size 0.3s ease;
        }

        #tooltipOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.6);
            display: none;
            z-index: 2000;
            justify-content: center;
            align-items: center;
            color: white;
            flex-direction: column;
            backdrop-filter: blur(4px);
            text-align: center;
        }

        .tooltip-section {
            margin: 20px 0;
            padding: 20px;
            border: 1px solid white;
            text-align: left;
            border-radius: 8px;
            background: #131313;
            width: 45%;
        }

        .tooltip-wrap {
            display: inline-flex;
            justify-content: space-between;
            max-width: 80vw;
        }

        #section4 {
      border-bottom: none;
    }