        body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    text-align: left;
    background-color:#1d1d1d;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    padding: 0;
}

@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
        padding:0px;
    }
}
    
@media (max-width: 576px) {
    .container, .container-sm {
        max-width: 100%;
        padding:0px;
    }
}
@media (min-width: 768px) {
    .container, .container-md, .container-sm {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 100%
        
    }
}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
        
    }
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.card {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0;
}

.card-container {
    margin: 5px;
    flex: 1 1 calc(20% - 10px);
    box-sizing: border-box;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.card-img-top {
    border-radius: 26px 26px 0 0;
}

.card-title{
    text-align: center;
    font-size: 16px;
    font-weight:500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding:0px 5px;
    color:#000;
}

.card-body {
    padding: 10px;
}

.card-button {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4px 20px;
    font-size: 1.4rem;
    font-weight: 500;
    color: white;
    background-color: #faaf09;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 2;
}

.card-button:hover {
    background-color: #2c2c2c;
}

.card:hover .card-button {
    display: block;
}

.progress {
    position: relative;
    overflow: hidden;
    height: 1.4rem;
    font-size: 1.2rem;
    border:solid 2px #ffffff;
}

.progress-bar.red { background-color: #ff4d4d; }
.progress-bar.yellow { background-color: #ffd11a; }
.progress-bar.green { background-color: #33cc33; }
.progress-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 2s infinite;
}

.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    color: black;
    font-weight: bold;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Custom styles for different screen sizes */
@media (min-width: 1200px) {
    .card-container {
        flex: 1 0 calc(20% - 13px);
        max-width: calc(20% - 13px);
    }
    
    .card-title{
        text-align: center;
        font-size: 12px;
        font-weight:500;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .card-container {
        flex: 1 0 calc(20%- 13px);
        max-width: calc(20% - 13px);
    }
    
    .card-title{
        text-align: center;
        font-size: 16px;
        font-weight:500;
    }
    
    .progress-bar{
        font-size:14px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-container {
        flex: 1 0 calc(20% - 13px);
        max-width: calc(20% - 13px);
    }
    
    .card-title{
        text-align: center;
        font-size: 14px;
        font-weight:500;
    }
    
    .progress-bar{
        font-size:12px;
    }
}

@media (max-width: 767.98px) {
    .card-container {
        flex: 1 0 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }
    
    .card-title{
        text-align: center;
        font-size: 12px;
        font-weight:500;
    }
    
    .progress-bar{
        font-size:10px;
    }
}

@media (max-width: 390.98px) {
    .card-container {
        flex: 1 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .card-title{
        text-align: center;
        font-size: 12px;
        font-weight:500;
    }
    
    .progress-bar{
        font-size:10px;
    }
}

.row.custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px;
}


.modal-content {
    width: 95%;
    margin: auto;
    font-size: 13px; /* Set font size to 13px */
    text-align: left; /* Align text to the left */
}

.modal-body {
    max-height: 400px; /* Set height to 600px */
    overflow-y: auto; /* Enable scrolling */
    scrollbar-width: thin; /* For Firefox */
    padding-top:0px;
}

.modal-body::-webkit-scrollbar {
    width: 6px; /* For WebKit browsers */
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* Button styles */
.modal-body .btn {
    width: 120px;
    margin: 10px auto;
    display: block;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
}

.modal-body .btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    background-color: transparent;
    animation: blink-blue-fast 1s infinite;
}

.modal-body .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    background-color: transparent;
}

.modal-body .btn-outline-primary:hover {
    border: 2px solid #6c757d;
    color: Black;
    animation: none; /* Stop blinking on hover */
}

.modal-body .btn-outline-secondary:hover {
    border: 2px solid #6c757d;
    color: Black;
    animation: none; /* Stop blinking on hover */
}

.modal-footer {
    display: flex;
    justify-content: flex-end; /* Ensure the buttons are aligned to the right */
    align-items: center;
}

.modal-footer .btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    background-color: transparent;
    animation: blink-blue-fast 1s infinite;
}

.modal-footer .btn-outline-secondary {
    border: 2px solid #6c757d;
    color: #6c757d;
    background-color: transparent;
    margin-right: auto; /* Push this button to the left */
}

.modal-footer .btn-outline-primary:hover {
    border: 2px solid #6c757d;
    color: Black;
    animation: none; /* Stop blinking on hover */
}

.modal-footer .btn-outline-secondary:hover {
    border: 2px solid #6c757d;
    color: Black;
    animation: none; /* Stop blinking on hover */
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes blink-blue-fast {
    0% { border-color: #007bff; color: #007bff; }
    50% { border-color: #0056b3; color: #0056b3; }
    100% { border-color: #007bff; color: #007bff; }
}

@keyframes blink-green {
    0% { border-color: #1fc702; color: #1fc702; }
    50% { border-color: #0db002; color: #0db002; }
    100% { border-color: #1fc702; color: #1fc702; }
}

.chat-bubble {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    max-width: 90%;
    word-wrap: break-word;
    display: inline-block;
}

.title {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.note {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.info-bubble {
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    word-wrap: break-word;
    display: inline-block;
    text-align: center;
}

.info-bubble p {
    margin: 5px 0;
    font-weight: bold;
}

.info-bubble .info-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    font-weight:600;
}

.info-bubble .info-item span {
    display: inline-block;
    width: 50%;
}

.info-bubble .info-item:last-child {
    border-bottom: 1px solid #ccc; /* Add underline to the last item */
}

.yellow-background-wrapper {
    background-color: #faaf09;
    color:#fff;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    margin: 0 -15px; /* Adjust margins to span the full width */
}

.yellow-background {
    margin: 0 auto; /* Center the text within the yellow background */
    font-size:18px;
}

.red-note {
    color: red;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

.image-container {
    text-align: center;
}

.question{
    font-size:18px;
    font-weight:500;
    text-align:center;
}

.alaaja{
    font-size:15px;
    text-align:center;
    font-weight:500;
}

.alaaja2{
    font-size:15px;
    text-align:center;
    font-weight:500;
}

.loading{
    padding:10px;
    text-align:center;
    font-size:12px;
    font-weight:500;
}

.chat-container {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Custom Pills Button */
/* Custom button styles */
/* Navbar Styles */
/* Navbar Styles */
/* Custom Navbar Styles */
/* Custom Navbar Styles */
.navbar-rtp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px; /* Meningkatkan padding agar navbar tidak terlalu tipis */
    background-color: #2b2d42;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 60px; /* Menetapkan tinggi minimum navbar */
}

.navbar-rtp .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-rtp .navbar-brand img {
    padding:10px;
    width: 125px;
    height: auto; /* Menyesuaikan tinggi gambar secara otomatis */
}

.navbar-rtp .navbar-buttons {
    display: flex;
    align-items: center;
}

.navbar-rtp .navbar-buttons .nav-item {
    margin-left: 10px;
}

.navbar-rtp .custom-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #000;
    background-color: #faaf09;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-btn {
    position: relative;
    overflow: hidden; /* Make sure the shine effect stays within the button */
}

.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 2s infinite;
}

.navbar-rtp .custom-btn:hover {
    background-color: #2c2c2c;
}

@media (max-width: 992px) {
    .navbar-rtp {
        justify-content: center;
    }

    .navbar-rtp .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-rtp .navbar-buttons {
        display: none;
    }
}

@media (min-width: 993px) {
    .sticky-footer {
        display: none;
    }
}

/* Add this CSS inside the <style> tag in the <head> section */

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #000;
    margin: 10px 0;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.marquee-icon {
    flex-shrink: 0;
    margin-right: 10px;
    z-index: 2; /* Ensure it stays above the text */
}

.marquee-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 54px; /* Adjust width as needed */
    background-color: #faaf09;
    z-index: 1;
}

.marquee-divider.left {
    left: 0;
}

.marquee-divider.right {
    right: 0;
    width: 30px; /* Different width for the right divider */
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    flex: 1;
}

.marquee-text {
    color: #fff;
    font-weight: 500;
    line-height: 1.5rem;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
    padding-left: 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 767.98px) {
    .marquee-container {
        animation-duration: 10s;
    }
}






@media (min-width: 768px) and (max-width: 991.98px) {
    .marquee-wrapper {
    padding: 5px 10px;
    font-size:12px;
    margin:0px;
    }
    
    .image-container{
        margin:3px;
    }
}

@media (max-width: 767.98px) {
    .marquee-wrapper {
    padding: 2px 8px;
    font-size:12px;
    margin:0px;
    }
    .image-container{
        margin:3px 0px;
    }
    
    .marquee-divider {
        width:40px;
    }
}

@media (max-width: 390.98px) {
    .image-container{
        margin:3px 0px;
    }
    
   
}









.h1-background-wrapper {
    background-color: #faaf09;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
}

.h1-background {
    margin: 0 auto; /* Center the text within the yellow background */
    font-size: 18px;
    display: inline-block; /* Ensure the text is centered within the background */
}

.scroll-box-container {
background: rgb(255,227,24);
background: linear-gradient(180deg, rgba(255,227,24,1) 0%, rgba(193,101,0,1) 100%);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    margin: 15px 0;
    padding: 10px;
}

.scroll-box-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}

.scroll-box {
    display: flex;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0, 0, 0, 1);
    padding: 5px 0;
}

.scroll-box .card {
    background: #262626;
    border-radius: 20px;
    width: calc(100% / 8 - 9px);
    height: 100%;
    flex-shrink: 0;
    display: inline-block;
    margin-right: 10px;
}

.scroll-box .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    border: none;
    padding: 6px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-button.left {
    left: 10px;
    z-index:1;
}

.scroll-button.right {
    right: 10px;
        z-index:1;
}

.scroll-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .scroll-box .card {
        width: calc(100% / 7 - 8.5px); /* 6 cards in a row */
    }
}

@media (max-width: 768px) {
    .scroll-box .card {
        width: calc(100% / 6 - 8px); /* 4 cards in a row */
    }
}

@media (max-width: 576px) {
    .scroll-box .card {
        width: calc(100% / 4 - 8.5px); /* 2 cards in a row */
    }
}

.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.search-box {
    width: 400px;
    display: flex;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 5px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
}

.search-box svg {
    width: 24px;
    height: 24px;
    fill: #888;
    margin-right: 10px;
}

.card-container.hidden {
    display: none;
}

.row.custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center remaining cards */
}

/* Sticky Footer Styles */
.sticky-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2b2d42;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.sticky-footer .footer-button {
    flex: 1 1 33.33%;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.sticky-footer .footer-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-bottom: 5px;
}

.sticky-footer .footer-button span {
    display: block;
}

@media (min-width: 993px) {
    .sticky-footer {
        display: none;
    }
}

/* Custom Footer Styles */
.footer-copyright {
    color: #000;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    bottom: 0;
    width: 100%;
    z-index: 999;
    margin-top:20px;
}