#right-content {
    background-color: #1e1b4b;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 248px;
    transition: ease-in-out 0.5s; /* Transisi lebar dan opacity */
}

#right-content.collapsed {
    margin-left: 100px;
    transition: ease-in-out 0.5s; /* Transisi lebar dan opacity */
}

.container {
    width: 100%;
}

#header-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.header-left-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.caption-btn-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: #ffffff30;
    padding: 4px 12px;
    border-radius: 100px;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-photo {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: white;
    border-radius: 100px;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff20;
    padding: 4px 12px 4px 4px;
    border-radius: 100px;
    cursor: pointer;
}

.header-profile:hover {
    background-color: #ffffff30;
}

.header-right {
    position: relative;
    display: flex;
    flex-direction: column;
}

.drop-profile {
    display: none;
    background-color: #f1f5f9;
    position: absolute;
    margin-top: 56px;
    padding: 6px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #cbd5e1;
}

.drop-point {
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    cursor: pointer;
}

.drop-point:hover {
    background-color: white;
}

.mobile-show {
    display: none !important;
}

.bg-dark {
    background-color: #1e1b4b;
}

.bg-white {
    background-color: white !important;
}

@media only screen and (max-width: 580px) {
    #right-content {
        margin-left: 0px;
        padding: 16px;
        margin-top: 56px;
    }

    .mobile-hidden {
        display: none !important;
    }

    .mobile-show {
        display: block !important;
    }

    .header-left {
        width: 200px;
    }

    .header-profile {
        gap: 4px;
        padding-right: 8px;
    }
}
