.generator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.input-area {
    margin-bottom: 30px;
}

textarea {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: #2196f3;
    outline: none;
}

.output-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.style-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.style-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #bbdefb;
}

.style-name {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
}

.style-preview {
    font-size: 20px;
    color: #333;
    word-break: break-all;
}

.copy-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: #555;
    margin-left: 20px;
    white-space: nowrap;
}

.style-card:hover .copy-btn {
    background: #2196f3;
    color: white;
}

.placeholder-msg {
    text-align: center;
    color: #999;
    padding: 40px;
}

.usage-guide {
    margin-top: 50px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}