.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-radio {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #3498db;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.modern-radio:checked {
    background-color: #3498db;
    border-color: #3498db;
}

.modern-radio:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
}

.radio-label {
    font-size: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.custom-input {
    padding: 4px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #3498db;
}

.settingtitle {
    text-decoration: underline;
    font-weight: 500;
}

.randomLinput {
    font-size: 0.8rem;
}

.nextodiv {
    display: flex;
}

.paddingright {
    padding-right: 10%;
}

.quizContainer {
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: relative;
}

.formDivSet {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.quizSettings {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svgdiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.settingsTitle {
    text-align: center;
}

.firstButtonn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foximageAlighn {
    display: flex;
    flex-direction: row;
}

.labeldiv {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.word-button {
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(145deg, #3498db, #2980b9);
    border: none;
    color: white;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    margin: 5px;
    max-width: 100px;
    width: 100px;
}

.word-button.disabled {
    background: linear-gradient(145deg, #bdc3c7, #95a5a6);
    text-decoration: line-through;
    color: #444;
    box-shadow: none;
    max-width: 100px;
    width: 100px;

}

.word-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* ===== Mobilbarát stílusok ===== */
@media (max-width: 768px) {
    .radio-group {
        gap: 8px;
    }
    
    .radio-label {
        font-size: 0.8rem;
    }
    
    .modern-radio {
        width: 18px;
        height: 18px;
    }
    
    .modern-radio:checked::after {
        width: 6px;
        height: 6px;
    }
    
    .custom-input {
        padding: 3px 6px;
        font-size: 12px;
    }
    
    .settingtitle,
    .randomLinput {
        font-size: 0.8rem;
    }
    
    .nextodiv {
        flex-direction: column;
        gap: 8px;
    }
    
    .paddingright {
        padding-right: 5%;
    }
    
    .quizContainer {
        height: auto;
        padding: 10px;
    }
    
    .formDivSet {
        flex-direction: column;
        gap: 10px;
    }
    
    .quizSettings {
        padding: 0 10px;
    }
    
    .svgdiv {
        padding: 0 10px;
    }
    
    .firstButtonn {
        width: 100%;
    }
    
    .foximageAlighn {
        flex-direction: column;
        align-items: center;
    }

}
