@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --cor_principal: #0597F2;
}

* {
    font-family: "Inter", sans-serif;
} 

body {
    height: 100vh;
    background-image: url('../assets/image/plano-de-fundo.jpg');
    background-size: cover;
}

.table_container {
    margin: 10px;
    padding: 10px;
}

.table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
}

.table_head {
    font-family: "Inter", sans-serif;
    background-color: #000000;
    color: #ffffff;
}

.table_td, .table_th {
    font-family: "Inter", sans-serif;
    color: #000000;
    border: 1px solid #c0c0c0;
    padding: 8px;
    text-align: center;
}

.table_th {
    color: #ffffff;
}

.button_action {
    color: #fff;
    cursor: pointer;
    border: 1px solid #000000;
}

.button_editar {
    background-color: #088508;
    margin-bottom: 3px;
}

.button_deletar {
    background-color: #ff0000;
}


@media screen and (max-width: 600px) {
    .table {
        border: 0;
    }

    .table_head {
        display: none;
    }

    .table tr {
        border: 2px solid #000000;
        display: block;
        margin: 1px;
    }

    .table td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
    }
}
