/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Sesuaikan warna dengan tema */
    white-space: nowrap; /* Mencegah teks turun ke bawah */
}
.bg-overlay {
    width: 100px; /* Sesuaikan ukuran */
    height: 100px; /* Harus sama dengan width agar bulat */
    border-radius: 50%; /* Membuat bulatan */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Memusatkan overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay-trigger-icon {
    width: 50px; /* Sesuaikan */
    height: 50px; /* Sama dengan width */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}