/* General Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f9fafa;
    margin: 0;
    padding: 0;
}

.btn-login{
    background-color: #1106cd;
}

/* Header Styles */
.navbar {
    padding: 15px 30px;
}

.navbar-brand img {
    width: 36px;
    height: 36px;
}

/* Navigation Bar Styles */
.navigation-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

/* Navigation Button Container */
.nav ul.nav {
    gap: 15px; /* Increased spacing between buttons */
}

/* Navigation Button Styles */
.nav-link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1106cd;
    text-decoration: none;
    background-color: transparent;
    border-radius: 8px; /* Adjusted border-radius */
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link-button span {
    margin-right: 6px;
    font-size: 14px; /* Icon size matching font size */
}

/* Hover and Active State */
.nav-link-button:hover {
    color: #fff;
    background-color: #1106cd;
}

.nav-link-button.active {
    color: #fff;
    background-color: #1106cd;
}

.nav-item{
    padding-left: 12px;
}

.navbar-text {
    color: black !important;
}

/* Icon Styles */
.feather {
    width: 20px;
    height: 20px; /* Icon size adjusted to match text */
    padding-right: 3px;
}

/* Estilo para el contenedor del menú de usuario */
.user-menu {
    position: relative;
    display: inline-block;
}

/* Ocultar el menú desplegable por defecto */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 10px 0;
}

/* Mostrar el menú cuando se pasa el ratón por encima */
.user-menu:hover .dropdown-menu {
    display: block;
}

/* Estilo para el elemento del menú */
.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #dc3545; /* Color rojo */
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .navigation-bar {
        padding: 8px 0;
    }

    .nav-link-button {
        font-size: 12px;
        padding: 8px 12px;
    }
}
