*{
    box-sizing:border-box;
}

body{
    background:#0f0f0f;
    color:white;
    font-family:Arial, sans-serif;
    margin:0;
    overflow-x:hidden;
}

h1{
    color:#d4af37;
    font-size:34px;
    margin-bottom:25px;
}

h2{
    color:#d4af37;
}

.box{
    background:#1a1a1a;
    padding:25px;
    border-radius:15px;
    max-width:800px;
    margin-bottom:30px;
    border:1px solid #333;
}

input,
select{
    width:100%;
    padding:14px;
    margin-top:5px;
    margin-bottom:15px;
    border:none;
    border-radius:10px;
    background:#2a2a2a;
    color:white;
    font-size:16px;
}

button,
.botao,
.btn-arquivar,
.btn-restaurar,
.btn-excluir{
    background:#d4af37;
    color:black;
    border:none;
    padding:12px 18px;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
}

.btn-restaurar{
    background:#00c853;
    color:white;
}

.btn-excluir{
    background:#c62828;
    color:white;
}

.tabela-area{
    width:100%;
    max-height:520px;
    overflow-x:auto;
    overflow-y:auto;
    border-radius:15px;
    border:1px solid #333;
    background:#1a1a1a;
    -webkit-overflow-scrolling:touch;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#1a1a1a;
    margin:0;
}

table th{
    background:#d4af37;
    color:black;
    padding:14px;
    position:sticky;
    top:0;
    z-index:2;
}

table td{
    padding:14px;
    border-bottom:1px solid #333;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#1a1a1a;
    border:1px solid #333;
    border-radius:15px;
    padding:25px;
}

.numero{
    font-size:36px;
    font-weight:bold;
    margin-top:15px;
}

/* CELULAR PREMIUM */
@media(max-width:900px){

    body{
        font-size:17px;
    }

    h1{
        font-size:30px;
        line-height:1.25;
    }

    h2{
        font-size:24px;
    }

    .box{
        width:100%;
        max-width:100%;
        padding:22px 18px;
        border-radius:18px;
    }

    input,
    select{
        font-size:18px;
        min-height:50px;
        padding:14px;
        border-radius:12px;
    }

    button,
    .botao,
    .btn-arquivar,
    .btn-restaurar,
    .btn-excluir{
        font-size:16px;
        min-height:48px;
        padding:13px 18px;
        border-radius:12px;
    }

    .tabela-area{
        max-height:480px;
    }

    .tabela-area table{
        min-width:900px;
    }

    table th,
    table td{
        font-size:14px;
        padding:13px;
    }

    .cards{
        display:block;
    }

    .card{
        margin-bottom:18px;
    }
}