.error-message {
    color: red;
    font-size: 0.9em;
}

/*.loading-message {*/
/*    color: blue;*/
/*    font-size: 1.2em;*/
/*    font-weight: bold;*/
/*    text-align: center;*/
/*    margin-top: 10px;*/
/*}*/


#loadingSpinner {
    position: fixed;
    display: none;
    z-index: 999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 50px solid #cfcfcf;
    border-radius: 50%;
    border-top: 50px solid #00acee;
    width: 100px;
    height: 100px;
    animation: spinner 1s linear infinite;
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.modal {
    display: none; /* Rejtett alapértelmezett megjelenés */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Háttér átlátszó fekete */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}



.suggestion-list {
    position: absolute;
    z-index: 1000;
    background-color: white;
    /*border: 1px solid #ccc;*/
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

.no-suggestion {
    padding: 10px;
    color: gray;
    font-style: italic;
}



.upload-container {
    text-align: center;
}

.upload-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-btn:hover {
    background-color: #218838;
}

.upload-btn input {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.upload-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}


