
.img-profile {
    width: 150px; /* Lebar tetap */
    height: 150px; /* Tinggi tetap */
    max-width: 150px; /* Pastikan gambar tidak melebihi lebar ini */
    max-height: 150px; /* Pastikan gambar tidak melebihi tinggi ini */
    border-radius: 50%; /* Membuat gambar menjadi lingkaran */
    object-fit: cover; /* Memastikan gambar sesuai dengan wadah tanpa distorsi */
    margin-bottom: 20px;
}


        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .nav-link.dropdown-toggle .img-profile {
            width: 40px; /* Sesuaikan ukuran lebar sesuai kebutuhan */
            height: 40px; /* Sesuaikan ukuran tinggi sesuai kebutuhan */
            object-fit: cover; /* Menjaga gambar tetap proporsional */
        }
        
        .img-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }

        .form-group.text-center input[type="file"] {
            display: block;
            margin: 0 auto;
        }
        .nav-link.dropdown-toggle {
            display: flex;
            align-items: center;
        }
       

        .logo {
            max-height: 47px;
            height: auto;
            width: auto;
        }
    
        .logo-text {
            color: white;
            margin-left: 10px;
            font-size: 15px; /* Default font size */
        }
    
        @media (max-width: 600px) {
            .flex-shrink-0 {
                flex-direction: column;
                align-items: flex-start;
            }
    
            .logo-text {
                margin-left: 0;
                margin-top: 10px;
                font-size: 0.875rem;
            }
        }