.header_bottom {
            position: sticky; /* Make it sticky */
            top: 0; /* Stick it to the top */
            z-index: 1000; /* Ensure it stays above other content */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .box {
            height: 400px; /* Fixed height for all boxes */
            overflow: hidden; /* Hide overflow content initially */
            position: relative; /* Required for positioning */
            padding: 6px 15px !important;
        }
        .detail-box {
            height: 100%;
            overflow-y: auto;
            padding: 10px;
            box-sizing: border-box;
            margin-top: 0px !important;
        }
        .content-container {
            height: 100%;
            overflow-y: auto;
            padding: 10px;
            box-sizing: border-box;
        }
        .content-container::-webkit-scrollbar {
            /* width: 8px; */
            width: 12px;
            background-color: #f5f5f5;
        }
        .content-container::-webkit-scrollbar-track {
            /* background: transparent; */
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            background-color: #f5f5f5;
        }
        .content-container::-webkit-scrollbar-thumb {
            /* background:#a2a0a1eb;
            border-radius: 10px; */
            border-radius: 10px;
            -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
            background-color: #555;
        }
        .content-container::-webkit-scrollbar-thumb:hover {
            background:#e9eaec;
        }
