/* Background styling */
body {
    font-family: Arial, sans-serif;
    background-image: url("/static/main/images/Background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    color: #000; /* Ensures black text */
}

/* Section wrapper to make text readable */
.section {
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Logo styling */
.logo-header {
    text-align: center;
}
.logo-img {
    max-height: 70px;
    margin-bottom: 10px;
}

/* Navbar styling */
.navbar-nav .nav-link {
    font-weight: bold;
    color: #000 !important;
    margin: 0 15px;
}
.navbar-nav .nav-link.active {
    background-color: #4B004C;
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Outer full-width bar */
.tab-indicator {
    background-color: #4B004C;
    color: white;
    font-style: italic;
    width: 100%;
    padding: 6px 0;
}

/* Inner container centers content and prevents overflow */
.tab-indicator-inner {
    max-width: 1140px;       /* Optional: match Bootstrap container */
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Content area styling */
.content-wrapper {
    padding: 50px;
    border-radius: 10px;
    width: 100%;
    color: black; /* Ensure text is readable */
}

/* Sticky footer layout */
.flex-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Full viewport height */
}

.page-content {
    flex: 1; /* Fills remaining space to push footer down */
}
