* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #2b2b2b;
    color: #f1f1f1;
    line-height: 1.6;
    padding: 20px;
}

#textboxid
{
    height:45px;
    font-size:14pt;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-weight: 800;
}

/* ===== Paragraphs ===== */
p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #e0e0e0;
}

.green-dot {
        height: 20px;
        width: 20px;
        background-color: #87CEEB; 
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); /* Optional: gives it a slight glow */
    }

.panel-container {
    display: grid;
    /* Defines 2 columns, each taking up an equal fraction of the space */
    grid-template-columns: 1fr 1fr;
    /* Defines 2 rows, each taking up an equal fraction of the space */
    grid-template-rows: 1fr 1fr;
    /* Optional: Sets a height for the container, e.g., full screen height */
    
    gap: 10px; /* Optional: Adds space between panels */
}


.panel {
    padding: 20px;
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Links ===== */
a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #63b3ed;
}

/* ===== Buttons ===== */
button {
    background: #1e90ff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.2s,
        box-shadow 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button{background: #1e90ff;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
font-size: 16px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);}

button:hover {
    background: #63b3ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ===== Cards / Sections ===== */
section,
div {
    background: #3a3a3a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

section:hover,
div:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* ===== Tables ===== */
.table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #555;
    background-color: #3a3a3a;
    border-radius: 10px;
    overflow: hidden;
}

/* Table Headers */
table th {
    background-color: #f2f2f2; /* light header background */
    color: #000000; /* black text */
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #555;
}

/* Table Cells */
table td {
    background-color: #3a3a3a;
    color: #f1f1f1;
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid #555;
}

/* Zebra Striping */
table tr:nth-child(even) td {
    background-color: #2f2f2f;
}

/* Row Hover */
table tr:hover td {
    background-color: #505050;
    transition: background-color 0.2s ease;
}

/* ===== Responsive Tables ===== */
@media (max-width: 768px) {
    table th,
    table td {
        padding: 10px;
        font-size: 14px;
    }
}
