html, body {
    height: 100%; /* Ensure the body takes the full height of the viewport */
    margin: 0;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set the main container to fill the viewport height */
}

.main-content {
    flex: 1; /* Allow the main content to expand and push the footer down */
}

footer {
    background-color: lightgrey;
    color:black;
    text-align: center;
    padding: 10px 0;
}

.navbar-dark {
    background-color: lightgrey; /* Dark green */
}
.navbar-brand img {
    height: 60px;
    padding:0;
}
.dropdown-menu {
    min-width: 150px;
}
.user-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-link.novo-post {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    color:black;
}
.nav-link.novo-post:hover {
    background-color: #6CCA98; /* Slightly lighter green */
    color: black !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Smooth Transitions */
#userDropdown a {
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-width: 200px;
    overflow: hidden;
}

/* Individual menu items */
.dropdown-item {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover and active states for menu items */
.dropdown-item:hover {
    background-color: #f7f7f7;
    color: #000000;
}

.dropdown-item:active {
    background-color: #e0e0e0;
    color: #000000;
}

/* Separator line */
.dropdown-item + hr {
    margin: 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

/* Logout button alignment */
#logout-form {
    display: none;
}

.dropdown-menu-end {
    text-align: left;
    margin: 0;
    padding: 0;
}

