/*
Theme Name: Twenty Twenty-Five MEE
Template: twentytwentyfive
Version: 1.0.1740062856
Updated: 2025-02-20 14:47:36

*/


:root {
    --table-font: Roboto, sans-serif;
    --table-font-size: 18px;
    --table-header-bg: #065c92f0;
    --table-header-color: white;
    --table-cell-padding: 5px 10px;
    --table-border: 1px solid #ccc;
    --caption-color: #065c92;
    --caption-font-size: 24px;
}

h2 {
    margin-top: 0px;
    margin-bottom: 15px;
}

caption {
caption-side: top;
font-weight: bold;
font-size: var(--caption-font-size);
margin-bottom: 4px;
text-align: left;
color: var(--caption-color);
white-space: nowrap;
}

/* Base table styles scoped to known table containers */
.taxonomy-table,
.origin-table,
.isolation-table,
.acession-table,
.publication-table
.specimen-state-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--table-font);
}

/* Common cell styles */
.taxonomy-table th,
.taxonomy-table td,
.origin-table th,
.origin-table td,
.isolation-table th,
.isolation-table td,
.acession-table th,
.acession-table td,
.publication-table th,
.publication-table td,
.specimen-state-table th,
.specimen-state-table td {
    padding: var(--table-cell-padding);
    border: var(--table-border);
    font-size: var(--table-font-size);
    text-align: left;
}

/* Common header styles */
.taxonomy-table th,
.origin-table th,
.isolation-table th,
.acession-table th,
.publication-table th,
.specimen-state-table th {
    background-color: var(--table-header-bg);
    color: var(--table-header-color);
    font-weight: normal;
    width: 1%;
    white-space: nowrap;
}

/* Table data cells specific styles */
.taxonomy-table td,
.origin-table td,
.isolation-table td,
.accession-table td,
.publication-table td,
.specimen-state-table td {
    text-align: left;
    white-space: wrap;
}



/* Optional: override widths for specific tables 
.acession-table th,
.specimen-state-table th {
    width: 25%;
}
*/


/*Styles for the cart and checkout page*/
.checkout-form{
    margin-top: 20px;
    padding: 20px;
    border-radius: 50px;
    color: black;
}


#aditional-information-header, #customer-information-header, #cart-items-header{
    text-align: center;
    margin-bottom: 20px;
}


.cart-items>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0px;
}

.cart-items>ul>li {
    background-color: #80A7D1;
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    width: 30%;
    text-align: center;
}

.cart-items>ul>li:hover {
    background-color: #044891;
}

.cart-items>ul>li>a {
    display: block;
}


.cart-items>ul>li>a:hover {
    display: block;
    color: white;
}


.cart-items>ul>li>a:focus {
    outline: none;
}


.customer-info {
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    flex-wrap: wrap;
    border-radius: 50px;
    color: black;
    margin-bottom: 20px;
}


.customer-information-group{
    text-align: center;
    margin: auto;
    padding: 10px;
}


.customer-information-group label, .customer-aditional-information-group label{
    font-weight: bold;
    margin-right: 5px;
    vertical-align: top;
    text-align: center;
}


.customer-aditional-information-group {
    text-align: center;
    margin: auto;
    padding: 10px;
    margin-bottom: 20px;
}

.customer-aditional-information-group textarea{
    width: 80%;
}

.submit-button {
    display: block;
    background-color: #80A7D1;
    width: 20%;
    margin: auto;
    border: 0px;
    border-radius: 5px;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #044891;
    color: white;
}