/* style.css */
.news-ticker {
    height: 30px;
    overflow: hidden;
    background-color: #333;
    color: white;
    font-size: 20px;
    line-height: 30px;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px;
}
.ticker {
    margin-bottom: 0px; /* Adjust this to increase or decrease the space below the ticker */
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f2f2f2;
}
@keyframes green-blink {
    0%, 100% { color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); }
    50% { color: rgb(0, 0, 0); background-color: rgb(21, 255, 0); }
}

@keyframes red-blink {
    0%, 100% { color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); }
    50% { color: rgb(0, 0, 0); background-color: rgb(255, 0, 0); }
}

.bg-green {
    animation: green-blink 1s infinite;
    text-align: center;
}

.bg-red {
    animation: red-blink 1s infinite;
    text-align: center;
}

.bg-default {
    background-color: transparent;
    text-align: center;
}

h1, h2, h3 {
    text-align: center;
}
.text-red {
    color: red;
}

.text-green {
    color: green;
}

.text-black {
    color: black;
}

a {
    color: black;
    text-decoration: none;
}

.small-button {
    width: 80px;
    height: 30px;
    line-height: 30px; /* This ensures vertical centering of the text */
    font-weight: bold;
    border-radius: 50px;
    font-family: Arial, sans-serif; /* Specify the desired font-family */
    font-size: 12px; /* Set a specific font-size */
    text-align: center;
    cursor: pointer;
    border: 1px solid #000;
    background-color: #f8f9fa;
    color: black;
    text-decoration: none;
    margin: 10px;
    padding: 0; /* Adjust or remove padding to vertically center */
    display: inline-block;
}

.button-group {
    display: flex;
    justify-content: center; /* Adjust this as necessary */
    align-items: center;
}

.status-page {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;   This will take the full viewport height */
    text-align: center;  /* This will center the text */
}

.content {
    background: #fff;
    padding: 2em;
    height: 220px;
    position: relative;
    z-index: 2;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}

.content1 {
    background: #fff;
    height: 220px;
    position: relative;
    z-index: 2;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}

select#plot-options {
    width: 200px;     /* Width of the drop-down list */
    height: 40px;     /* Height of the drop-down list */
    font-size: 18px;  /* Font size of the text */
}

.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#reading-btn {
    border: 1px solid #FF6666; /* Light red color */
    color: rgb(121, 67, 67);
    line-height: 30px; /* Adjust line height to vertically center the text */
    padding: -4px 0; /* Adjust padding to fine-tune the position */
    /* Keep the rest of the button styles the same */
}




