/*!
Theme Name: sc-theme
Author: 3DSC - Webdesign 24
Description: Theme pour le plugin 3D Simple Control - Installation unique
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sc-theme

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

sc-theme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
# Site-Header
--------------------------------------------------------------*/
.site-header{
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #dcd7ca
}

.site-branding, .main-navigation{
    flex: 1
}

.site-branding{
    display: flex;
    align-items: center
}

.site-branding img{
    max-width: 80px;
    height:auto;
}

.main-navigation{
    text-align: right
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#content{
    max-width: 1600px;
    margin: auto;
    padding: 1.5em
}

#secondary{
    border-top : 2px solid #dcd7ca;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-template-rows: auto auto auto;
    
}

.widget{
    
}


table{
    border: 0.1rem solid #dcd7ca;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 18px;
    margin: 1rem 0;
    max-width: 100%;
    overflow: hidden;
    table-layout: auto;
    width: 100%;
}

table caption{
    background: #dcd7ca;
    font-weight: 600;
    padding: 0.5em;
    text-align: center;
}

th, td {
    border: 0.1rem solid #dcd7ca;
    line-height: 1.4;
    margin: 0;
    overflow: visible;
    padding: 0.5em;
    display: table-cell;
    vertical-align: inherit;
    width: auto;
}

/*--------------------------------------------------------------
# Site-footer
--------------------------------------------------------------*/
.site-footer{
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #dcd7ca
}

