.header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.badge {
    background-color: orange;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.content {
    display: flex;
    align-items: center;
    gap: 10px;
}

#content-data {
    /*max-height: 500px; /* Adjust height as needed */
    /*overflow-y: auto; /* Enable vertical scrolling */
    padding: 10px;
}




/* ============================= STYLING THE SCROLL BAR ============================= */
::-webkit-scrollbar {
	width: 0.4rem;
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--bs-primary);
}

/* Styling the accordion scroll bar */
#content-data::-webkit-scrollbar {
	width: 0.25rem;
	background-color: transparent;
}

#content-data::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--bs-secondary);
}

/* Styling the accordion scroll bar */
.horizontal-scroll::-webkit-scrollbar {
	height: 0.4rem;
	background-color: transparent;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: var(--bs-primary);
}





/* ============================= TRUNCATE TEXT ONE LINE ============================= */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================= TRUNCATE TEXT TWO LINE ============================= */
.truncate-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimal 2 baris */
    -webkit-box-orient: vertical;
}





/* ============================= NAVIGATION BAR ============================= */
.layout-navbar {
    z-index: 99;
}





/* ============================= HORIZONTAL SCROLL BAR ============================= */
/* Hide scrollbar by default */
.exhTag {
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    display: flex; /* Ensure elements stay in line */
    align-items: center; /* Align items vertically */
}

/* Show scrollbar when the content is being scrolled */
.exhTag::-webkit-scrollbar {
    display: none;
}

/* When the container is scrolled, show the scrollbar */
.exhTag:active::-webkit-scrollbar {
    visibility: visible; /* Make it visible when scrolled */
}





/* ============================= CARD ============================= */
.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1.2rem 1.6rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    transition: all 0.5s;
}
.card:hover {
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
    transition: all 0.5s;
}





/* ============================= SEARCH BOX ============================= */
.InputContainer {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	border-radius: 10px;
	column-gap: unset;
	overflow: hidden;
	cursor: pointer;
	padding-left: 15px;
	transition: box-shadow 0.3s ease-in-out;
}

.InputContainer:hover {
    cursor: default;
}

.InputContainer:focus-within {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.input {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	font-size: 0.9em;
	padding-left: 12px;
	caret-color: rgb(255, 81, 0);
}

.labelforsearch {
	cursor: text;
	padding: 0px 12px;
}

.searchIcon {
	width: 13px;
}

.border {
	height: 40%;
	width: 1.3px;
	background-color: rgb(223, 223, 223);
}





/* ============================= FILTER ============================= */
.select2-container--default .select2-results__option {
    font-size: 14px; /* Adjust font size as needed */
}

.select2-container--default .select2-results__option b {
    font-weight: bolder; /* Style the matched text */
}

.select2-results__group {
    font-weight: bold !important;
    font-size: 18px !important;
    color: #333; /* Darker color for visibility */
    padding: 6px 10px;
    text-transform: uppercase;
    margin-left: 0.5rem;
    border-left: 2px solid var(--bs-primary);
}

.select2-selection__clear {
    color: var(--bs-primary) !important;
    font-weight: bolder !important;
    inset-inline-end: 13rem !important;
    height: 100% !important;
}

.select2-selection__rendered {
    padding-inline-start: 2.1875rem !important;
}

.select2-container--default.select2-container--focus .select2-selection__rendered,
.select2-container--default.select2-container--open .select2-selection__rendered {
    padding-inline-start: calc(2.125rem - var(--bs-select-border-width)) !important;
}





/* ============================= CARD TIMELINE IN EVENT PROGRAMME ============================= */



/*.card {*/
/*    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2),*/
/*        0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);*/
/*    padding: 16px;*/
/*    z-index: 2;*/
/*}*/

/*.timeline {*/
/*    padding-inline-start: 0;*/
/*    position: relative;*/
/*    text-align: justify;*/
/*}*/

/*.timeline li:nth-child(odd):before {*/
/*    display: inline-block;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    position: absolute;*/
/*    content: " ";*/
/*    width: 3px;*/
/*    background-color: var(--bs-primary);*/
/*    right: -1px;*/
/*    margin-left: -1.5px;*/
/*}*/

/*.timeline li:nth-child(even):before {*/
/*    display: inline-block;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    position: absolute;*/
/*    content: " ";*/
/*    width: 3px;*/
/*    background-color: var(--bs-primary);*/
/*    left: -1px;*/
/*    margin-left: -1.5px;*/
/*}*/

/*.timeline li:first-child:before {*/
/*    transform: translateY(50%);*/
/*}*/

/*.timeline li:last-child:before {*/
/*    transform: translateY(-50%);*/
/*}*/

/*.timeline li:nth-child(odd) {*/
/*    position: relative;*/
/*    list-style: none;*/
/*    width: 50%;*/
/*    margin-top: -3rem;*/
/*}*/

/*.timeline li:nth-child(odd) > div:first-child {*/
/*    width: 88%;*/
/*    z-index: 3;*/
/*    background-color: white;*/
/*}*/

/*.timeline li:nth-child(odd) .line {*/
/*    height: 1px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    bottom: 50%;*/
/*    margin-right: -5px;*/
/*    background-color: gray;*/
/*    z-index: 1;*/
/*    right: 15px;*/
/*}*/

/*.timeline li:nth-child(odd) .dot-a {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 12%;*/
/*    margin-right: -10px;*/
/*    margin-top: -5px;*/
/*    background-color: #ff6090;*/
/*    z-index: 2;*/
/*    box-shadow: none;*/
/*}*/

/*.timeline li:nth-child(odd) .dot {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 0;*/
/*    margin-right: -5px;*/
/*    margin-top: -5px;*/
/*    background-color: #ff6090;*/
/*    z-index: 2;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #ff6090;*/
/*}*/

/*.timeline li:nth-child(even) {*/
/*    position: relative;*/
/*    list-style: none;*/
/*    width: 50%;*/
/*    margin-left: 50%;*/
/*    margin-top: -3rem;*/
/*}*/

/*.timeline li:nth-child(even) > div:first-child {*/
/*    width: 88%;*/
/*    background-color: white;*/
/*    z-index: 3;*/
/*    margin-left: auto;*/
/*}*/

/*.timeline li:nth-child(even) .line {*/
/*    height: 1px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 5px;*/
/*    top: 50%;*/
/*    bottom: 50%;*/
/*    background-color: gray;*/
/*    z-index: 1;*/
/*}*/

/*.timeline li:nth-child(even) .dot-a {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 12%;*/
/*    margin-left: -10px;*/
/*    margin-top: -5px;*/
/*    background-color: #534bae;*/
/*    z-index: 2;*/
/*    box-shadow: none;*/
/*}*/

/*.timeline li:nth-child(even) .dot {*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    margin-left: -5px;*/
/*    margin-top: -5px;*/
/*    z-index: 2;*/
/*    background-color: #534bae;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #534bae;*/
/*}*/

/*.timeline li:first-child {*/
/*    margin-top: 0;*/
/*}*/

/*.timeline li:nth-child(6n + 1) .dot {*/
/*    background-color: #ec407a;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #ec407a;*/
/*}*/

/*.timeline li:nth-child(6n + 1) .dot-a {*/
/*    background-color: #ec407a;*/
/*}*/

/*.timeline li:nth-child(6n + 2) .dot {*/
/*    background-color: #ab47bc;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #ab47bc;*/
/*}*/

/*.timeline li:nth-child(6n + 2) .dot-a {*/
/*    background-color: #ab47bc;*/
/*}*/

/*.timeline li:nth-child(6n + 3) .dot {*/
/*    background-color: #26c6da;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #26c6da;*/
/*}*/

/*.timeline li:nth-child(6n + 3) .dot-a {*/
/*    background-color: #26c6da;*/
/*}*/

/*.timeline li:nth-child(6n + 4) .dot {*/
/*    background-color: #ffc107;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #ffc107;*/
/*}*/

/*.timeline li:nth-child(6n + 4) .dot-a {*/
/*    background-color: #ffc107;*/
/*}*/

/*.timeline li:nth-child(6n + 5) .dot {*/
/*    background-color: #006064;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #006064;*/
/*}*/

/*.timeline li:nth-child(6n + 5) .dot-a {*/
/*    background-color: #006064;*/
/*}*/

/*.timeline li:nth-child(6n) .dot {*/
/*    background-color: #ff7043;*/
/*    box-shadow: 0 0 2px 5px #fff, 0 0 0 7px #808080, 0 0 0 12px #fff,*/
/*        0 0 0 13px #ff7043;*/
/*}*/

/*.timeline li:nth-child(6n) .dot-a {*/
/*    background-color: #ff7043;*/
/*}*/

/*@media (max-width: 767px) {*/
/*    .timeline:before {*/
/*        left: 5%;*/
/*    }*/

/*    .timeline li:nth-child(n) {*/
/*        margin-left: 0;*/
/*        width: 100%;*/
/*        margin-top: 50px;*/
/*    }*/
        
/*    .timeline li .line {*/
/*        left: 5%;*/
/*    }*/
        
/*    .timeline li .dot-a {*/
/*        left: 12%;*/
/*        margin-left: -10px;*/
/*    }*/
        
/*    .timeline li .dot {*/
/*        left: 5%;*/
/*        margin-left: -5px;*/
/*    }*/
/*}*/