/* Általános stílusok */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 20px;

}

/* Táblázat beállításai */
table {
    border-collapse: collapse;
    width: 100%;
    max-width: 500px; /* Kisebb szélesség */
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px; /* Lekerekített sarkok */
    overflow: hidden;
    margin-bottom: 2px; /* Távolság a táblázatok között */
}

th, td {
    padding: 4px 8px; /* Még kisebb padding */
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Roboto Condensed', serif;
    font-size: 13px; /* Kisebb betűméret */
}

th {
    background-color: #3a6f5c; /* Finom szín */
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 12px; /* Még kisebb betűméret a címeknél */
}

tr:hover {
    background-color: #f5f5f5;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

caption {
    caption-side: top;
    margin-bottom: 8px;
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

/* Gomb és input stílus */
input[type=submit] {
    background-color: #3a6f5c;
    color: white;
    padding: 6px 12px; /* Tömörebb gomb */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 12px;
}

input[type=submit]:hover {
    background-color: #347257;
}
