/*
        STYLE GLOBAL
    */
    :root {
        --background: #e7edf9;
        --blue: #0F62AC;
        --primary-bg-color: #e7edf9 !important;

        --shape: #ffffff;
        
        --text-white: #ffffff;
        --text-body: #000;

        --text-name: #0013ea;
        --primary-color: #0013ea;
        --secondary-color: #150f5e;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* html {
        @media ( max-width: 1080px ) {
            font-size: 15px;
        }

        @media ( max-width: 720px ) {
            font-size: 14px;
        }
    } */

    body {
        background: var(--background);
        -webkit-font-smoothing: antialiased;
        
        font-family: 'Popping', sans-serif;
        font-weight: 400;
    }

    h1, h2, h3, h4, h5, h6, strong {
        font-weight: 600;
    }

    /*
        STYLES DOS COMPONENTES
    */

    header.header-principal {
        background: var(--primary-bg-color);
    }

    div.content-header{
        max-width: 1520px;
        margin: 0 auto;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 2rem 1rem 6rem;

        font-size: 1.5rem;
    }

    div.relogio-header {
        display: flex;
        padding-right: 55px;
    }

    div.relogio-header > h4 {
        color: black;
        font-size: 2.5rem;
    }

    div.relogio-header > img {
        width: 50px;
        margin-right: 10px;
    }

    h1.text-header {
        color: black;
    }

    div.container-chamada {
        display: flex;
        /* grid-template-columns: 2fr 0.5fr; */
        /* gap: 2rem; */

        max-width: 1520px;
        margin: 0 auto;
        margin-top: -5rem;

        padding: 0 1rem;              
    }

    div.content-chamada {    
        width: 80%;    
        border-radius: 1.4rem;
        border: 1px solid #bbbbbb;

        margin-right: 32px;

        padding: 1.5rem 2rem;

        background: white;  
    }

    header.content-header-container {
        display: flex;
        flex-direction: column;
    }

    .title-content-chamada{
        font-weight: bold !important;
        color: #3b3b3b !important;
        font-size: 2.5rem !important;
    }

    /*TITULO PACIENTE*/
    header.content-header-container > span {
        font-size: 2.5rem;
    }

    /*NOME PACIENTE*/
    header.content-header-container > strong {
        font-size: 4rem;
        color: var(--text-name);
        font-weight: 600;
    }

    div.num-sala {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;

        width: 20%;

        border-radius: 1.4rem;
        border: 1px solid #bbbbbb;

        padding: 1.5rem 2rem;

        background: white;  
    }

    div.num-sala > header > span {
        font-size: 3rem;
        font-weight: 500;
    }

    div.num-sala > strong {
        font-size: 4rem;
        color: var(--text-name) ;
    }

    footer.content-footer-container {
        display: flex;
        flex-direction: column;
    }

    footer.content-footer-container > span {
        font-size: 2rem;
        padding-bottom: 0.2rem;
    }

    footer.content-footer-container > strong {
        font-size: 2.5rem;
        font-weight: 500;
    }

    /*
        ESTILOS TABELA
    */

    .wrapper-table-chamados{
        padding: 0 1rem;
        margin-top: 15px;

    }

    div.container-table-chamados {
        max-width: 1490px;
        margin: 0 auto;

        padding: 1.5rem 2rem;
        border-radius: 1.4rem;
        border: 1px solid #bbbbbb;
        background: white;
    }

    div.title-table {
        margin-top: 1.5rem;
    }

    div.title-table > p {
        line-height: 2rem; 
        max-width: 100%;
        text-align: center;
        font-size: 2.5rem;
        padding: 0.9rem 0;
        margin-bottom: 1rem;
    }

    table {
        width: 100%;
        border-spacing: 0.4rem 0.5rem;
        border-collapse: collapse;
    }
    th {
        color: var(--secondary-color);
        font-weight: bold;
        padding: 1rem 2rem;
        font-size: 2.4rem;
        line-height: 1.3rem;
        text-align: left;
    }

    th.title-sala {
        text-align: center;
    }
    
    tr{
        border-bottom: 0.5px solid #ccc;   
    }
    td {
        background: white;
        padding: 1rem 2rem;
        border-radius: 1rem;
        color: black;
        font-size: 2.5rem;
    }

    td.numero-sala-table {
        text-align: center;
    }