﻿body {
    font-family: 'Segoe UI';
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.header {
    text-align: center;
    font-size: 24px;
    color: green;
    margin-top: 20px;
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.table-container {
    margin: 0 10px;
}

.table {
    border-collapse: collapse;
    width: 100%;
    height: 100%;
}

    .table th {
        padding: 8px;
        background-color: #d4edda;
        color: black;
        text-align: center;
    }

.table-title {
    padding: 8px;
    color: black;
    text-align: center;
}


.tbodyrow {
    text-align: center;
}

.styled-text {
    font-family: 'Segoe UI';
    font-size: 30px;
    color: green;
    font-weight: bold;
}

.footer {
    text-align: center;
    color: darkred;
    background-color: #d4edda;
    border: 1px solid #ddd;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.footer-move {
    width: 100%;
    overflow: hidden; /* Hide the overflowing text */
    white-space: nowrap; /* Prevent line breaks */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#message {
    display: block;
    animation: scrollText 20s linear infinite;
    white-space: nowrap; /* Ensure the text does not break into multiple lines */
}

@keyframes scrollText {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.flash {
    animation: flash 1s infinite;
}
