@font-face {
    font-family: "RobotoMono";
    src: url("fonts/RobotoMono-Regular.ttf");
}

body {
    margin: 0px;
    background-color: #0f0117;
    color: #b9fc00;
    font-family: RobotoMono;
    overscroll-behavior: none;
}

p.info {
    font-size: small;
}

table, th, td {
    border: 2px solid rgb(128, 128, 128);
    background-color: rgb(10, 15, 15);
    border-collapse: collapse;
}

h1.cim {
    color: aliceblue;
    text-align: center;
}

body {
    background-color: black;
    border-collapse: separate; 
    border-spacing: 5em;
}

#abrak_helye {
    width: auto;
    text-align: center;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    overscroll-behavior: none;
}

button, .button-primary {
    width: 50%;
    height: 2.4rem;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid lavender;
    border-radius: 5px;
    transition: 0.1s linear;
    margin: 10px auto;
    display: block;
    color: #b9fc00;
    background-color: #242333;
}

button:hover, .button-primary:hover {
    background-color: var(--primaryColorDarker);
    box-shadow: 0 0 10px var(--primaryColor);
}

::placeholder {
    color: #9d99c9;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9d99c9;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #9d99c9;
}

input[type=text], input[type=password] {
    width: 50%;
    height: 2.4rem;
    font-size: 1.2rem;
    text-align: center;
    border: 1px solid lavender;
    border-radius: 5px;
    transition: 0.1s linear;
    margin: 10px auto;
    display: block;
    color: #b9fc00;
    background-color: #0c0930;
}

input[type=text]:focus, input[type=password]:focus {
    border: 2px solid var(--primaryColor);
    transition: 0.1s linear;
}


::placeholder {
    color: #9d99c9;
    opacity: 1;
}

.locker-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.locker {
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 8px;
    width: 80px;
    text-align: center;
    font-weight: bold;
    user-select: none;
}

.locker.available {
    background-color: #8f8;
    color: black;
}

.locker.in_use {
    background-color: #f88;
    color: white;
}

.locker.disabled {
    background-color: #ccc;
    color: black;
}

.locker.selected {
    background-color: #fd0;
    color: black;
}

#esemenyek-tabla {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#esemenyek-tabla table {
    border-collapse: collapse;
    margin: 0 auto;
}

#esemenyek-tabla th,
#esemenyek-tabla td {
    padding: 4px 10px;
    text-align: left;
}




