body {
    background-image: url('../src/bg/background_6.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

div.nav-bar {
    display: flex;
    background-color: rgba(210, 105, 30, 0.3);
    border: 5px solid black;
    border-radius: 1rem;
    padding: 10px;
    flex-direction: row;
    justify-content: space-around;
}

div.nav-item {
    background-color: rgba(210, 105, 30, 1);
    border: 5px solid black;
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    font-size: larger;
    font-weight: bolder;
}

.nav-link {
    color: white;
}

.cim {
    text-align: center;
}

.gms,
.cim,
.foold {
    background-color: rgba(210, 105, 30, 0.7);
    border: 5px solid black;
    border-radius: 1rem;
    margin-top: 3rem;
    padding: 1rem;
    color: white;
    /* border-dark;
    border-5;
    rounded-4;
    my-3; */
}

.foold a {
    color: #0097e9;
    text-decoration-line: underline;
    font-weight: bold;
}

.foold a:visited {
    color: #96daff;
    text-decoration-line: underline;
    /* font-weight: normal !important; */
}

table {
    border: 5px solid rgba(1, 70, 200, 1);
}

th {
    background-color: rgba(1, 70, 200, 0.8);
    padding: 5px;
    border: 3px solid rgba(1, 70, 200, 1);
}

td {
    background-color: rgba(1, 70, 200, 0.6);
    padding: 5px;
    border: 3px solid rgba(1, 70, 200, 1);
}

table caption {
    background-color: rgba(1, 70, 200, 0.5);
    color: white;
    text-align: center;
    border: 3px solid rgba(1, 70, 200, 1);
}

.bg-a {
    background-color: rgba(210, 105, 30, 0.7);
}

body.large .container-lg {
    max-width: 95% !important;
}

/* Miniatűrök konténere */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* Miniatűrök stílusa */
.thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #888;
    transform: scale(1.05);
}

/* Modális ablak */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modális tartalom */
.modal-content {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Nagy kép a modálisban */
.modal-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Bezárás gomb */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

/* Nyilak */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}