body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

#wrapper {
    display: flex;
    flex: 1;
}

#sidebar {
    width: 250px;
    flex-shrink: 0;
	height: 100%;
}

#content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.btn-outline-dark {
            color: black;
            border-color: black;
			margin-left:5px;
	
        }

        .btn-outline-dark:hover {
            background-color: #C9C9C9;
            color: white;
        }

        .btn-outline-dark i {
            color: black;
        }

.footer {
    width: 100%;
}
.profile-wrapper {
    position: relative;
    display: inline-block;
}

.profile-img {
    width: 50px;
    height: 50px;
}

.edit-profile-img {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2px 6px;
    font-size: 12px;
}

/* Para dispositivos móveis */
@media (max-width: 768px) {
    #sidebar {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #343a40 !important;
        z-index: 1000;
        overflow-y: auto;
    }

    #wrapper {
        flex-direction: column;
    }
}

/* Para desktops */
@media (min-width: 769px) {
    .navbar-toggler {
        display: none;
    }
}
