/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Custom Fonts */
.navbar-brand,
h1, h2, h3, 
.card-title {
    font-family: 'Roboto Flex', sans-serif;
}

/* Font Weights */
.navbar-brand {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 500;
}

h3 {
    font-weight: 400;
}

.card-title {
    font-weight: 500;
}

/* Navigation */
.dropdown-menu {
    min-width: 200px;
}

/* Forms */
.required::after {
    content: "*";
    color: red;
    margin-left: 4px;
}

/* Typography Utilities */
.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.font-roboto-flex {
    font-family: 'Roboto Flex', sans-serif;
}

/* Add any additional custom styles below */
.divider {
    position: relative;
    text-align: center;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider span {
    padding: 0 1rem;
}

/* Add this to your existing styles */
.navbar-brand img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* Footer */
footer {
    border-top: 1px solid #dee2e6;
}

footer .list-inline-item {
    margin-right: 1rem;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Add these to your existing styles */

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #4a5568;
}

.navbar-nav .nav-link:hover {
    color: #2d3748;
}

.dropdown-header {
    font-weight: 600;
    color: #4a5568;
    padding: 0.5rem 1rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #4a5568;
}

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

.dropdown-item i {
    width: 1.25rem;
    text-align: center;
}

/* Profile Icon */
.nav-item .fa-user-circle {
    font-size: 1.5rem;
    color: #4a5568;
}

.nav-item .fa-user-circle:hover {
    color: #2d3748;
} 
.qr-code svg {
    width: 200px;
    height: 200px;
}