/* Layout - Minimal styling */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8f9fa;
    color: #212529;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

#wrapper {
    width: 100%;
    min-height: 100%;
}

#centerMain {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

/* Reset box-sizing */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Basic image styles */
img {
    max-width: 100%;
    height: auto;
}

/* Typography - Using loaded Google Fonts */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Strong text with Inter font */
strong, b {
    font-weight: 600;
}

/* Buttons and interactive elements */
.btn, button, input[type="submit"] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

/* Navigation */
.navbar, .nav-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
}

/* Dropdown active state - Better contrast */
.dropdown-item.active,
.dropdown-item:active {
    color: #ffffff !important;
    background-color: #0d6efd !important;
    font-weight: 500;
}

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

/* Let Bootstrap handle the rest */