/* Alap testbeállítások */
body {
    font-family: 'Roboto', sans-serif; /* Modern betűtípus */
    margin: 0;
    background-color: #f5f7fa; /* Világos háttérszín */
}

/* Oldal fejléc */
.header {
    text-align: center;
    padding: 30px 0 15px;
    font-size: 28px;
    font-weight: bold;
    font-style: italic;
    background-color: #ffffff;
    border-bottom: 4px solid #007BFF; /* Kék vonal alul */
}

/* Főmenü sáv */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1976f8;
    margin-bottom: 2rem;
    padding: 0 2rem;
    font-size: 1rem;
    min-height: 48px;
}

.menu-left, .menu-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-right a {
    margin-left: auto;
    font-weight: 600;
}

/* Menü linkek és gombok */
.menu a,
.dropbtn {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

/* Menü link hover állapot */
.menu a:hover,
.dropbtn:hover {
    background-color: #0056b3; /* Sötétebb kék háttér */
}

/* Lenyíló menü alap konténer */
.dropdown {
    position: relative;
}

/* Lenyíló menü tartalma (almenük) */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

/* Lenyíló menüpont stílus */
.dropdown-content a {
    color: #007BFF;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    font-style: italic;
    border-bottom: 1px solid #f0f0f0;
}

/* Lenyíló menüpont hover */
.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Lenyíló menü aktiválása hoverrel */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Zöld sikerüzenet doboz */
.sikeruzenet {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 20px;
    margin: 20px auto;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    width: fit-content;
    font-weight: bold;
    font-style: italic;
}

/* Középre igazított fő tartalom */
.content {
    text-align: center;
    margin-top: 50px;
    color: #333;
    font-weight: bold;
    font-style: italic;
    font-size: 18px;
}
.filter-row select,
.filter-row input[type="date"] {
    font-size: 1.2rem;
    padding: 0.7em 1.2em;
    border-radius: 7px;
    border: 1px solid #b4d7f7;
    min-width: 170px;
    margin-bottom: 2px;
}

.filter-row .btn {
    font-size: 1.2rem;
    padding: 0.65em 2em;
    border-radius: 7px;
}
/* ==== FELSŐ MENÜSOR – EGYSÉGES DIZÁJN ==== */
.menubar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 4px solid #007BFF;
    padding: 18px 0 12px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.12rem;
}
.menu-left {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 2.5rem;
}
.menu-right {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-right: 2.5rem;
}
.menu-link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-style: italic;
    padding: 8px 18px;
    border-radius: 5px;
    transition: background 0.2s;
}
.menu-link.active,
.menu-link:hover {
    background-color: #e3f1fe;
}
.logout-btn {
    background: #e53935;
    color: #fff !important;
    font-weight: bold;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1rem;
    font-style: italic;
}
.logout-btn:hover {
    background: #ab1b15;
}
