/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css'); */
@import url('./bootstrap.min.css');
@import url('./font-roboto.css');
body {
    font-family: 'Roboto', sans-serif !important;
    background-color: #f0f0f0;

}

.btn-primary {
    background-color: #0f47ad !important;
}

.text-primary {
    color: #0f47ad !important;
}
.bg-primary {
    background-color: #0f47ad !important;
}

.thin {
    display: inline-block;
    width: 5px;
}

.logo-img {
    width: 50px;
    height: 50px;
    background-image: url('logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    margin: 0 10px;
}

/* Định dạng header */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #0f47ad;
    color: white;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

/* Định dạng logo */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.logo i {
    font-size: 36px;
    color: #ff9900;
    margin-right: 10px;
}

/* Định dạng menu điều hướng */
nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    /* margin-right: 20px; */
    display: inline-block;
    padding: 10px;
}

nav ul li:hover {
    background-color: #0b347e;
    border-radius: 5px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

/* Định dạng user-info nằm bên phải */
.user-info {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.user-info #userName {
    margin-right: 10px;
    font-weight: bold;
}

.user-info .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.user-info .dropdown-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-info .dropdown-menu ul li {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.user-info .dropdown-menu ul li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.user-info .dropdown-menu ul li:hover {
    background-color: #dfdfdf;
}


