﻿body {
    padding-top: 90px;
}

.top-bar {
    background-color: orange;
    color: white;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1, h2, h3, h4, h5 {
    color: navy;
}

h1 {
    font-weight: bold;
    text-shadow: 2px 2px 4px gray; /* X, Y, blur, color */
    background-color: lavender; /* Light lavender background */
    padding: 10px; /* Optional: adds spacing inside the h1 */
    border-radius: 5px; /* Optional: rounded corners */
}

p, ul {
    font-size: 1.8rem;
    line-height: 1.6;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

hr {
    border: none;
    height: 5px;
    background-color: darkgrey;
    width: 100%;
    margin: 20px 0;
}

/* ====== General Table Styling ====== */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

    /* ====== Header Styling ====== */
    table thead {
        background-color: #007bff;
        color: #fff;
    }

        table thead th {
            padding: 10px;
            text-align: left;
            font-weight: bold;
            border-bottom: 2px solid #0056b3;
        }

    /* ====== Body Styling ====== */
    table tbody tr {
        border-bottom: 1px solid #ddd;
    }

        table tbody tr:nth-child(even) {
            background-color: #f8f9fa;
        }

    table tbody td {
        padding: 8px 10px;
    }

    /* ====== Hover Effect ====== */
    table tbody tr:hover {
        background-color: #e9f5ff;
    }

/* ====== Optional: Rounded Corners ====== */
table {
    border-radius: 6px;
    overflow: hidden;
}

    /* ====== Optional: Center Certain Cells ====== */
    table td.center,
    table th.center {
        text-align: center;
    }



.Section {
    background-color: lavender;
}

.myFooter {
    font-size: x-small;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: lavender;
    color: red;
}
