#about {
    display: none;
    margin-left: 20px;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
 
    border: 4px solid var(--button-normal-bg);
    padding: 10px;
    border-radius: 10px;
    background: white;
    z-index: 200;
    height: calc(100vh - 200px);
}

.aboutBox {
    background: white;

    
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    height: calc(100% - 40px);
    overflow-y: auto;
}

.under-construction {
    background: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.under-construction img {
    display: inline-block;
    width: 200px;
    height: 200px;
    object-fit: cover; /* keeps images neatly contained */
    border-radius: 8px; /* optional: rounded corners for a softer look */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* optional: tiny shadow for polish */
} 

.under-construction div {
    margin: 10px 0;
    display: inline-block;
    max-width: 400px;
    padding: 10px;
    vertical-align: top;
    font-size: 16px;
    color: #222222; /* dark text for contrast */
}

.constr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
    background-color: #fffdf2; /* match white page background */
    color: #222222;
    border: 1px solid #dddddd;
}

.constr-table td {
    padding: 10px 5px;
    vertical-align: middle; /* centers image and text vertically */
}

.constr-img {
    width: 100px;
    height: 100px;
    object-fit: cover; /* keeps images neatly contained */
    border-radius: 8px; /* optional: rounded corners for a softer look */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* optional: tiny shadow for polish */
}

.constr-no-img {
    width: 100px;
    height: 100px;
    place-content: center;
    text-align: center;
    border-radius: 8px; /* optional: rounded corners for a softer look */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* optional: tiny shadow for polish */   
}

.constr-no-img::after {
    content: "N/A";
}

@media (max-width: 767px) {
    .constr-img {
        width: 75px;
        height: 75px;
    }

    .constr-no-img {
        width: 75px;
        height: 75px;
    }
}

.constr-name-table th {
    background-color: #eeeeee; /* light background for header */
    color: #222222; /* dark text */
    font-weight: bold;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    text-align: center; /* or left, depending on style */
    font-size: 15px; /* maybe a little bigger than td */
}

.constr-name-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 14px;
    background-color: #ffffff; /* pure white background */
    color: #222222; /* dark text for contrast */
    border: 1px solid #dddddd;
}

.constr-name-table td {
    border: 1px solid #dddddd;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}

.img-title {
    text-align: center;
    width: 100px;
    font-style: italic;
}


#about_dismiss {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    padding: 5px;
    border-radius: 5px;
}

#about_dismiss:hover {
    background-color: #cccccc; /* darker blue on hover */
}
