.error-div {
    color: red;
}
.ac-input,
.ac-choiceSetInput {
    display: inline;
    width: 100%;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #495057 !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid lightblue !important;
    border-radius: 0.25rem !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

button {
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    border: 2px solid #ccc;
    background-color: #4CAF50;
    width: 100%;
  }

.ac-input:focus,
.ac-choiceSetInput:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Labelek formázása */
.ac-input-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #212529;
}

.table {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.table-header {
    display: flex;
    background-color: #4CAF50;
    color: white;
    padding: 2px;
    font-weight: bold;
}
.table-header div {
    flex: 1; /* Minden cella egyenlő szélességű */
    text-align: center;
}
.table-row {
    display: flex;
    border-bottom: 1px solid #ccc;
}
.table-row:nth-child(even) {
    background-color: #f9f9f9; /* Alternáló háttérszín */
}
.table-cell {
    flex: 1; /* Minden cella egyenlő szélességű */
    padding: 10px;
    text-align: center;
}