body {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3); /* Adiciona sombra à sidebar */
}

.sidebar .logo-container {
    text-align: center;
    padding: 20px 0;
}

.sidebar .logo-container img {
    max-width: 150px;
    height: auto;
}

.sidebar .user-profile {
    text-align: center;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #34495e;
}

.sidebar .user-profile img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #16a085;
}

.sidebar .user-profile h5 {
    margin: 10px 0 5px;
    font-size: 16px;
}

.sidebar .user-profile p {
    font-size: 14px;
    color: #bdc3c7;
}

.sidebar .nav-link {
    color: #ecf0f1;
}

.sidebar .nav-link:hover {
    background-color: #34495e;
    color: #fff;
}

.sidebar .nav-item .nav-link.active {
    background-color: #16a085;
    color: #fff;
}

.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: #ecf0f1;
}

.sidebar .dropdown-menu {
    background-color: #34495e;
}

.sidebar .dropdown-menu .dropdown-item {
    color: #ecf0f1;
}

.sidebar .dropdown-menu .dropdown-item:hover {
    background-color: #16a085;
}

.sidebar .nav-link i {
    margin-right: 8px;
}