:root {
    --color-pair: #d6e2f1;
    --color-unpair:#f6f7f8;
    --color-header-tab:#a3cbf9;
    --color-text:black;
    --color-button-panel: #ffffff;
    --color-button-panel-hover: #b0b8c1;
    --color-button-panel-active: #e6ebef;
    --color-button-panel-border: black;
    --color-button-edit: #f76223;
    --color-button-delete: #ff2828;
    --color-required:red;
    --color-button-add: #11982f;
    --color-button-no-warning: #f68700;
    --color-button-warning: #767676;
    --color-warning: yellow;
    --color-hover: rgba(0, 0, 0, .2);
    --color-title: #303030;
    --color-body: #ffffff;
    --size: 12px;
}
html{
    font-size:var(--size);
}

[x-cloak] {
    display: none;
}

body{
    color: var(--color-text);
    background-color: var(--color-body);
    margin: 0 1rem 1rem 1rem;
}

.flex-container{
    display:flex;
    flex-wrap: wrap;
    width:100%;
    justify-content: space-between;
}
.app-title{
    color:var(--color-title);
    font-size:3rem;
    align-self: center;
}

.app-logo{
    width: 15%;
}
.app-logo img{
    width:100%;
    height: auto;
}
.button-panel {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.button-panel button{
    font-size: 1.5rem;
    border-radius:4px;
    background-color: var(--color-button-panel);
    border: var(--color-button-panel-border) 1px solid;
    padding:0.3rem 0.6rem;
}
.button-panel button:hover,
.button-panel button.active:hover{
    background-color: var(--color-button-panel-hover);
}
.button-panel button.active{
    background-color: var(--color-button-panel-active);
}

.table-input{
    border-style: hidden;
    background-color: rgba(0,0,0,0);
    color: var(--text-color);
    font-size: 1rem;
    cursor: auto;
    width: 100%;
}

.pointer{
    cursor: pointer;
}
.card-container{
    display: flex;
    gap:5rem;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content:center;
    margin-left: 5%;
    margin-right: 5%;
}

.img-container {
    display: inline-block;
    position: relative;
    width: 18rem;
}
.img-container .text {
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
    position: absolute;
    text-align: center;
    font-family: Georgia;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0%;
    color: white;
    width: 100%;
    font-size: 2rem;
    padding-top:1rem;
    padding-bottom: 1rem;
}
.img-container img {
    width:100%;
    height: 20rem;
}
.flex-col{
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
}
.bt-edit{
    color: var(--color-button-edit);
    cursor: pointer;
}

.bt-delete{
    color: var(--color-button-delete);
    cursor: pointer;
}

.bt-add{
    color: var(--color-button-add);
    cursor: pointer;
    font-size: 2rem;
}

.required{
    border-color:var(--color-required);
}

@media (max-width: 1250px) { 
    .app-title{
        font-size:1.2rem;
    }
    
}

