﻿/* Reset body padding that's causing the gap */
body {
    margin: 0;
    padding: 0;
    padding-top: 0 !important; /* Remove the 50px padding causing the gap */
    font-family: 'Oswald', sans-serif;
}

/* Main header styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Adjust as needed */
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 60px; /* Adjust based on your header height */
}

/* Navigation styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    margin: 0;
}

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    height: 100%;
}

.nav-tab {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        background-color: #f5f5f5;
    }

/* Content area - starts right after header */
.content {
    margin-top: 60px; /* Should match header height */
    padding: 20px;
    min-height: calc(100vh - 60px); /* Adjust footer space if needed */
}

/* Keep your existing styles but adjust for new structure */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements */
input,
select,
textarea {
    max-width: 280px;
}
