
   body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #fff0f5, #ffe4ec);
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.main-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h2, h3 {
    text-align: center;
    margin: 10px 0;
    color: #c2185b;
    font-weight: 600;
}

.count-info {
    text-align: center;
    font-weight: bold;
    color: #ad1457;
    margin-bottom: 15px;
}


.container {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(194, 24, 91, 0.08);
    border-radius: 12px;
    box-sizing: border-box;
}


.container-tabela {
    width: 100%;
    max-width: 100%; 
    margin: 30px auto;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 8px 24px rgba(194, 24, 91, 0.08);
    border-radius: 12px;
    box-sizing: border-box;
    overflow-x: hidden; 
}


form {
    display: flex;
    flex-direction: column;
}

form label {
    font-weight: bold;
    color: #c2185b;
    margin-bottom: 5px;
    font-size: 14px;
}

form input[type="text"],
form input[type="number"],
form input[type="date"],
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #f3c1d6;
    border-radius: 6px;
    background-color: #fffbfd;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

form input:focus,
form select:focus {
    border-color: #d81b60;
    outline: none;
    box-shadow: 0 0 8px rgba(216, 27, 96, 0.2);
    background-color: #ffffff;
}

form button[type="submit"] {
    background: #d81b60;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

form button[type="submit"]:hover {
    background: #c2185b;
}

form button[type="submit"]:active {
    transform: scale(0.98);
}


table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed; 
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 10px 4px; 
    text-align: center;
    font-size: 12px; 
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

th {
    background: #d81b60;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #c2185b;
}

td {
    border-bottom: 1px solid #f3c1d6;
    color: #444;
}

tbody tr:nth-child(even) {
    background-color: #fff7fa;
}

tbody tr:nth-child(odd) {
    background-color: #ffeaf1;
}

tbody tr:hover {
    background-color: #f8bbd0;
    transition: 0.1s ease;
}


table th:nth-child(1)  { width: 4%; } 
table th:nth-child(4), 
table th:nth-child(5), 
table th:nth-child(6),
table th:nth-child(11) { width: 4%; }  
table th:nth-child(3)  { width: 14%; } 
table th:nth-child(9), 
table th:nth-child(10) { width: 11%; } 