/* Navbar Logo Styling */
.navbar-logo {
    width: 100px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: white;
}

/* Sidebar logo container */
.sidebar-header {
    text-align: center;
}

.sidebar-header a {
    display: inline-block;
}

/* Button Styling */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #c49a2f;
    border-color: #c49a2f;
    color: white !important;
}

.btn-info {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.btn-info:hover {
    background-color: #051e33;
    border-color: #051e33;
    color: white !important;
}
