/* ====== GLOBAL STYLES ====== */


body {
    
     background: linear-gradient(rgba(0, 77, 122, 0.85), rgba(0, 77, 122, 0.85)),
              url('../assets/images/images\ \(1\).jpeg') no-repeat center center/cover;
    background: #f4f7fb;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-seri
}

/* ====== NAVIGATION BAR ====== */

.navbar {
    width: 100%;
    background: #003366;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    justify-content: center;   /* Centers the links horizontally */
}

.navbar .logo {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 5px;
    transition: 0.2s ease-in-out;
}

.nav-links a:hover,
.nav-links .active {
    border-bottom: 2px solid #ffcc00;
    color: #ffcc00;
}

/* ====== PAGE HEADER ====== */

.page-header {
    background: linear-gradient(to right, #003366, #00509e);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ====== MAIN CONTENT SECTIONS ====== */

.content-section {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.content-section h2 {
    margin-bottom: 15px;
    color: #003366;
}

.content-section h3 {
    margin-top: 25px;
    color: #00509e;
}

.content-section ul {
    margin: 10px 0 20px 25px;
}

.content-section li {
    margin-bottom: 8px;
}

/* ====== FORMS (request page, manager panel, etc.) ====== */

.form-container {
    max-width: 600px;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-container label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #003366;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #003366;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #00509e;
}

/* ====== TABLES (for manager panel) ====== */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

thead {
    background: #003366;
    color: white;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f2f6ff;
}

/* ====== FOOTER ====== */

.footer {
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* ====== RESPONSIVE DESIGN ====== */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .content-section, .form-container {
        margin: 20px;
        padding: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}
