/* Form Container */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Blokkok csoportosítása */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Blokk címek */
.form-section h2 {
    font-size: 20px;
    color: #002746;
    margin-bottom: 10px;
    text-align: left;
}

/* Input mezők és címkék */
label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

input[type="text"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #21a391;
    outline: none;
}

/* TinyMCE szerkesztő beállítása */
.tox {
    border: 1px solid #ccc !important;
    border-radius: 4px;
    font-size: 14px;
}

/* Gombok */
button {
    background-color: #21a391;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    width: 100%;
    margin-top: 15px;
}

button:hover {
    background-color: #188978;
    transform: scale(1.02);
}

/* Kép előnézet és törlés */
.image-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.image-preview input[type="checkbox"] {
    margin-top: 5px;
}

/* Vissza gomb */
.back-button {
    text-decoration: none;
    color: #21a391;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.back-button:hover {
    text-decoration: underline;
    color: #188978;
}
