/*
Theme Name: Twenty Twenty-Four Child
Theme URI: https://wordpress.org/themes/twentytwentyfour/
Template: twentytwentyfour
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Four is designed to be flexible, versatile and applicable to any website. Its collection of templates and patterns tailor to different needs, such as presenting a business, blogging and writing or showcasing work. A multitude of possibilities open up with just a few adjustments to color and typography. Twenty Twenty-Four comes with style variations and full page designs to help speed up the site building process, is fully compatible with the site editor, and takes advantage of new design tools introduced in WordPress 6.4.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.3.1737369499
Updated: 2025-01-20 10:38:19

*/

/* Styles for tables and specific information */


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


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;
}

#product-title{
    margin: 1px;
}



/* 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;
}



/*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;
}
