/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Branding */
#site-name {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff; /* Nền xanh */
    border-radius: 5px;
    color: white;
}

#site-name a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#site-name img {
    height: 40px;
    margin-right: 10px;
}

/* Navigation Menu */
.nav-global {
    margin: 15px 0;
    text-align: center;
}

.nav-global ul {
    list-style: none;
    padding: 0;
}

.nav-global ul li {
    display: inline-block;
    margin: 0 15px;
}

.nav-global ul li a {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-global ul li a:hover {
    color: #0056b3;
}

/* Admin Content */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    margin: 0;
}

#content {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer a {
    color: white;
    text-decoration: underline;
}

footer a:hover {
    color: #d4d4d4;
}
