#SettingPage{
    position: relative;
    width: 1268px;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .profile-section {
        margin-bottom: 0;
    }

    .icon-row {
        margin-top: 10px;
        color: white;
    }

    .my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 0.1rem !important;
    }

    #SettingPage{
        /* position: relative; */
        width: auto;
        height: auto;
        /* overflow: hidden; */
    }
}

.profile-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-image:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.5);
}

.icon-item {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.icon-item:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.5);
}

.settingMenuItem {
    background-color: #1f1f1f;
    color: white;
    border-radius: 10px;
    margin: 10px;
    padding: 2px 2px 2px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.settingMenuItem:hover {
    background-color: #2575fc;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(37, 117, 252, 0.5);
}

.settingMenuItem i {
    transition: transform 0.3s;
}

.settingMenuItem:hover i {
    transform: translateX(5px);
}

.settingMenuItem a{
    text-decoration: none;
    color: white;
}

.bi {
    font-size: 1.8rem;
}

/* .text-muted {
    color: #b3b3b3 !important;
} */

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rounded-circle {
    border-radius: 50% !important;
    height: 100px;
    width: 100px;
}

.profile-section h5{
    color: white;
}


/* Logout button  */
.logout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Confirmation dialog box */
.logout-dialog {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 300px;
}

/* Buttons */
.logout-dialog button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.logout-dialog .yes-btn {
    background-color: #4CAF50; /* Green */
    color: white;
}

.logout-dialog .no-btn {
    background-color: #f44336; /* Red */
    color: white;
}