/* ==========================================
   MangaStudio - Inputs Component
   ========================================== */

/* Option Group */
.option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Option Input (select/input) */
.option-input {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    background: var(--bg-primary);
    transition: var(--transition);
}

.option-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

select.option-input {
    cursor: pointer;
}

/* Manga Title Input */
.manga-title-input {
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
}

.manga-title-input::placeholder {
    color: var(--text-tertiary);
}

/* Editor Title Input */
.editor-title {
    font-size: 28px;
    font-weight: 600;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 24px;
    background: transparent;
}

.editor-title::placeholder {
    color: var(--text-tertiary);
}

/* Concept Text */
.concept-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.concept-text p {
    margin-bottom: 12px;
}
