﻿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: purple;
    width: 100%;
    margin: 20px 0;
}

/* ====== Bordered Table ====== */
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;
    border: 1px solid #ccc; /* outer border */
}

    /* ====== Header Styling ====== */
    table thead {
        background-color: #007bff;
        color: #fff;
    }

        table thead th {
            padding: 10px;
            text-align: left;
            font-weight: bold;
            border: 1px solid #ccc; /* border for each header cell */
        }

    /* ====== Body Styling ====== */
    table tbody td {
        padding: 8px 10px;
        border: 1px solid #ccc; /* border for each body cell */
    }

    /* ====== Zebra Striping ====== */
    table tbody tr:nth-child(even) {
        background-color: #f8f9fa;
    }

    /* ====== Hover Effect ====== */
    table tbody tr:hover {
        background-color: #e9f5ff;
    }

.Section {
    background-color:lavender;
}

.myFooter {
    font-size: x-small;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: lavender;
    color: red;
}

/* ✅ Pulse Animation */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ✅ Blink Animation */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

/* ✅ Wave Animation */
.wave {
    display: inline-block;
    animation: wave 2s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

/* ✅ Rainbow Color Animation */
.rainbow {
    animation: rainbow 3s infinite linear;
}

@keyframes rainbow {
    0% {
        color: red;
    }

    25% {
        color: orange;
    }

    50% {
        color: green;
    }

    75% {
        color: blue;
    }

    100% {
        color: red;
    }
}

/* ✅ Typing Effect */
.typing {
    display: inline-block;
    border-right: 2px solid black;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(10) infinite alternate, blink-caret .7s infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

