/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
#sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: #ecf0f1;
    min-height: 100vh;
    margin-left: 0;
    transition: margin-left 0.25s ease-out;
}

#wrapper.toggled #sidebar {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background-color: #1a252f;
    text-align: center;
}

#sidebar .sidebar-header h4 {
    margin: 0;
    font-size: 1.5rem;
}

#sidebar .list-unstyled {
    padding: 0;
    margin: 0;
}

#sidebar .list-unstyled a {
    display: block;
    padding: 10px 10px;
    color: #ecf0f1;
    text-decoration: none;
    transition: background-color 0.3s;
}

#sidebar .list-unstyled a:hover {
    background-color: #34495e;
}

#sidebar .list-unstyled a.active {
    background-color: #e74c3c;
}

/* Page Content Styles */
#page-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: calc(100% - 250px);
    padding: 0;
    transition: width 0.25s ease-out;
}

#wrapper.toggled #page-content-wrapper {
    width: 100%;
}

.main-content {
    flex-grow: 1;
    padding: 0 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.header .header-left {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 35px;
}

#menu-toggle {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-right: 10px;
    cursor: pointer;
}

.header .header-right {
    display: flex;
    align-items: center;
}

.header .user-info {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.header .user-info .username {
    margin-right: 10px;
    font-weight: bold;
}

.header .user-info .user-photo {
    height: 35px;
    width: 35px;
    border-radius: 50%;
}

.header .dropdown-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #2c3e50;
}

/* Footer Styles */
.footer {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    #sidebar {
        margin-left: -250px;
    }

    #wrapper.toggled #sidebar {
        margin-left: 0;
    }

    #page-content-wrapper {
        width: 100%;
    }

    #wrapper.toggled #page-content-wrapper {
        margin-left: 250px;
    }
}

@media (max-width: 768px) {
    .header .user-info .username {
        display: none;
    }

    .main-content {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .header .logo img {
        height: 30px;
    }

    .main-content {
        padding: 0 10px;
    }
}

.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
