/* style.css - Word Combiner Plugin */

/* Wrapper */
.word-combiner-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Heading */
.word-combiner-wrapper h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Input Fields */
.word-combiner-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.word-combiner-inputs input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.word-combiner-inputs input[type="text"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    outline: none;
}

/* Generate Button */
.word-combiner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

.word-combiner-btn:hover {
    background: #1e4ed8;
    transform: translateY(-2px);
}

.word-combiner-btn i {
    font-size: 16px;
}

/* Results Section */
.word-combiner-results {
    margin-top: 25px;
    padding: 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    min-height: 80px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.word-combiner-results h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #111827;
}

.word-combiner-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.word-combiner-results li {
    background: #ffffff;
    margin: 6px 0;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.word-combiner-results li:hover {
    transform: translateX(4px);
    background: #f3f4f6;
}

.word-combiner-results li i {
    color: #2563eb;
}
