/* Alap stílusok - Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 80vh;
}

/* Főcím stílusok */
h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Alap gomb stílusok */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

/* Link stílusok */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Form elemek */
input, select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Konténerek */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Segédosztályok */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}
/* KERESŐ FELÜLET STÍLUSOK */

/* Kereső konténer */
.search-interface {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Kereső szekciók */
.search-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-section:last-child {
    border-bottom: none;
}

/* 🆕 MINDEN CÍM KÖZÉPRE */
.search-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center; /* 🆕 KÖZÉPRE */
}
/* Contains szekció zöld címe */
.search-section:nth-child(3) h3 {
    color: #2ecc71 !important;
}

/* Excludes szekció piros címe */
.search-section:nth-child(4) h3 {
    color: #e74c3c !important;
}

/* 🆕 WORD PARTS CÍMEK KÖZÉPRE */
.word-part-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2ecc71;
    font-size: 18px;
    text-align: center; /* 🆕 KÖZÉPRE */
    width: 100%;
}

/* 🆕 NINCS BAL/JOBB IGAZÍTÁS */
.word-part-group:first-child .word-part-label,
.word-part-group:last-child .word-part-label {
    text-align: center; /* 🆕 MINDKETTŐ KÖZÉPRE */
    margin-left: 0;     /* 🆕 NINCS TOLÁS */
    margin-right: 0;    /* 🆕 NINCS TOLÁS */
}

/* Szó hossz bevitel */
.length-inputs {
    text-align: center; /* Középre igazítás */
    margin-bottom: 15px;
}

.length-dropdown {
    padding: 10px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    min-width: 200px;
    display: inline-block; /* Középre igazításhoz */
	text-align: center;
    text-align-last: center;
	
}

/* Betű pozíció rács */
.letter-positions-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.letter-position-box {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #3498db;
    border-radius: 5px;
    text-transform: uppercase;
}

.letter-position-box:focus {
    border-color: #2980b9;
    background-color: #f8f9fa;
}

/* Kereső input mezők */
.search-input {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #3498db;
}

/* ABC rács */
.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.letter-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
    user-select: none;
}

.letter-box:hover {
    border-color: #3498db;
    background-color: #f8f9fa;
}

.letter-box.included {
    background-color: #2ecc71;
    color: white;
    border-color: #27ae60;
}

.letter-box.excluded {
    background-color: #e74c3c;
    color: white;
    border-color: #c0392b;
}

/* Keresés gomb */
.search-actions {
    text-align: center;
    margin-top: 30px;
}

.search-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Betöltés indikátor */
.loading-indicator {
    margin-top: 15px;
    color: #3498db;
    font-style: italic;
}

.hidden {
    display: none;
}

/* Keresési eredmények */
.search-results {
    margin-top: 40px;
}

/* 🆕 MÓDOSÍTOTT RESULTS-GRID - FLEXBOX */
.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* 🆕 MÓDOSÍTOTT RESULT-ITEM - SZÓ SZÉLESSÉG + KERET */
.result-item {
    background: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid #bdc3c7; /* 🆕 UGYANAZ MINT WORD-PART-INPUT */
    width: auto; /* 🆕 SZÓ SZÉLESSÉGE */
    min-width: min-content; /* 🆕 MINIMUM A TARTALOM */
}

.result-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: #3498db; /* 🆕 HOVER SZÍN */
}

.word-link {
    color: #2c3e50;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    white-space: nowrap; /* 🆕 NEM TÖRİ SORBA */
}

.word-link:hover {
    color: #3498db;
    text-decoration: underline;
}

/* Nincs találat */
.no-results {
    text-align: center;
    padding: 40px;
    color: #7f8c8d;
}

.no-results p {
    margin-bottom: 10px;
}

/* Reszponzív kereső */
@media (max-width: 768px) {
    .search-interface {
        padding: 20px;
        margin: 10px 0;
    }
    
    .length-inputs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .length-input, .length-dropdown {
        width: 100%;
    }
    
    .alphabet-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    }
    
    .letter-box {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* 🆕 MOBIL RESULT-ITEM */
    .result-item {
        padding: 12px 16px;
    }
    
    .word-link {
        font-size: 14px;
    }
}
/* WORD PARTS MEZŐK - RESZPONZÍV */
.word-parts-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.word-part-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 🆕 CÍMEK KÖZÉPRE */
}

/* 🆕 BALRA KÖZÉPRE IGAZÍTÁS - WORD BEGINNING */
.word-part-group:first-child {
    align-items: center; /* 🆕 VISSZA KÖZÉPRE */
    text-align: center;
}

.word-part-group:first-child .word-part-label {
    text-align: center; /* 🆕 VISSZA KÖZÉPRE */
    margin-left: 0;     /* 🆕 NINCS TOLÁS */
}

.word-part-group:first-child .word-part-input {
    text-align: left;
    margin-left: auto;  /* 🆕 BALRA KÖZÉPRE */
    margin-right: auto; /* 🆕 BALRA KÖZÉPRE */
}

/* 🆕 JOBBRA KÖZÉPRE IGAZÍTÁS - WORD ENDING */
.word-part-group:last-child {
    align-items: center; /* 🆕 VISSZA KÖZÉPRE */
    text-align: center;
}

.word-part-group:last-child .word-part-label {
    text-align: center; /* 🆕 VISSZA KÖZÉPRE */
    margin-right: 0;    /* 🆕 NINCS TOLÁS */
}

.word-part-group:last-child .word-part-input {
    text-align: right;
    margin-left: auto;   /* 🆕 JOBBRA KÖZÉPRE */
    margin-right: auto;  /* 🆕 JOBBRA KÖZÉPRE */
}

/* 🆕 KÖZÉPRE IGAZÍTÁS - MIDDLE LETTERS (alapértelmezett) */

.word-part-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 18px;
    text-align: center; /* 🆕 CÍM SZÖVEG KÖZÉPRE */
    width: 100%; /* 🆕 TELJES SZÉLESSÉG */
}

.word-part-input {
    width: 100%;
    max-width: 200px;
    padding: 12px 15px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: border-color 0.3s;
    text-align: center; /* 🆕 MINDEN MEZŐ SZÖVEGE KÖZÉPRE */
    height: 50px;
}

/* 🆕 NINCS KÜLÖN IGAZÍTÁS WORD BEGINNING/ENDING-RE */
.word-part-group:first-child .word-part-input,
.word-part-group:last-child .word-part-input {
    text-align: center; /* 🆕 MINDKETTŐ KÖZÉPRE */
}

.word-part-input:focus {
    border-color: #3498db;
    outline: none;
}

.word-part-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 12px;
    text-align: center; /* 🆕 KIS SZÖVEG KÖZÉPRE */
}
.text-structure {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.6;
    text-align: center;
}