/* Estilo global */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

/* Estilo do cabeçalho */
header {
    background-color: rgba(178, 34, 34, 0.8);
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 4em;
    font-family: 'Lobster', cursive;
    color: #fff;
}

/* Estilo do conteúdo */
.content {
    width: 80%;
    margin: 20px 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.category {
    display: none;
    margin-bottom: 20px;
}

.category h2 {
    background-color: rgba(178, 34, 34, 0.8);
    padding: 10px;
    margin: 0;
    border-radius: 5px 5px 0 0;
    text-align: center;
    font-size: 2.5em;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(178, 34, 34, 0.8);
    border-radius: 0 0 5px 5px;
}

.category li {
    background-color: rgba(26, 26, 26, 0.7);
    padding: 15px;
    border-bottom: 1px solid #333;
    font-size: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cut-name {
    text-align: left;
}

.cut-price {
    text-align: right;
}

.category li:last-child {
    border-bottom: none;
}

/* Estilo do rodapé */
footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: rgba(178, 34, 34, 0.8);
    color: #fff;
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.messages {
    font-size: 2em;
    color: #fff;
}

.senha-container {
    margin-top: auto;
    font-size: 1.5em;
    text-align: left;
    width: 80%;
    margin-bottom: 150px;
}

.senha-table {
    width: 100%;
    border-collapse: collapse;
}

.senha-table td {
    padding: 10px;
    border: none;
    text-align: left;
    font-size: 2em;
    color: #000; /* Texto em preto */
    background-color: #fff; /* Fundo branco */
}

.senha-historico {
    font-size: 1em;
    margin-top: 10px;
    color: #000; /* Texto em preto */
    background-color: #fff; /* Fundo branco */
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
}

.senha-btn {
    background-color: #b22222;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 2em;
    cursor: pointer;
}

.senha-display {
    font-size: 2em;
    font-weight: bold;
    color: #000; /* Texto em preto */
    background-color: #fff; /* Fundo branco */
    padding: 10px;
    border-radius: 5px;
    margin-left: 20px;
    display: inline-block;
}