/* Alapértelmezett szöveg vastagítás mindenhol */
body {
    font-weight: bold; /* Az egész oldalon alapértelmezés szerint vastag szöveg */
}

.container {
    border: 1px solid #e0e0e0;
    padding: 0px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: linear-gradient(to right, #ffffff, #dfdfdf);
    box-shadow: -3px 2px 11px 0px #757575;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #212529;
    text-align: center;
}

.copy-button, .retry-button {
    padding: 10px 15px;
    margin-top: 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold; /* Vastag szöveg */
    transition: all 0.3s ease;
}

.copy-button {
    background-color: #198754;
    color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.copy-button:hover {
    background-color: #157347;
}

.retry-button {
    background-color: #ffc107;
    color: #212529;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.retry-button:hover {
    background-color: #e0a800;
}

.checkbox-container {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold; /* Vastag szöveg */
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.checkbox-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    font-weight: bold; /* Vastag szöveg */
}

.checkbox-container label:hover {
    background-color: #e9ecef;
}

input[type="text"] {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: border-color 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 20px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #495057;
}

input[type="file"] {
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-weight: bold; /* Vastag szöveg */
    transition: background-color 0.3s ease;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

input[type="file"]:hover {
    background-color: #e9ecef;
}

textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: normal;
    resize: vertical;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 80%;
}

textarea:focus {
    outline: none;
    border-color: #495057;
}

h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold; /* Vastag szöveg */
    color: #212529;
    text-align: center;
}

button {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold; /* Vastag szöveg */
}
.file-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.file-button {
    background-color: #198754;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.file-button:hover {
    background-color: #157347;
}

.file-button span {
    display: inline-block;
    pointer-events: none;
}
   /* Konténer a fájlfeltöltési gombokhoz */
        .file-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        /* Gomb alapstílusok */
        .file-button {
            padding: 10px 20px;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            font-weight: bold;
            cursor: pointer;
            text-align: center;
            transition: background-color 0.3s ease;
            display: inline-block;
            color: white;
        }

        /* Alapértelmezett (sárga) szín, ha nincs fájl */
        .file-button--empty {
            background-color: #ffc107; /* Sárga */
        }

        /* Zöld szín, ha van fájl */
        .file-button--filled {
            background-color: #198754; /* Zöld */
        }

        /* Hover effekt */
        .file-button:hover {
            filter: brightness(0.9);
        }

        .file-button span {
            display: inline-block;
            pointer-events: none;
        }
        
