/* file: /css/storybot-generate-story-kids-style.css */
/* ------------------------------------------------- */

/* Kids Mode Form */
/* ---------------------------------------------------------------------------------------------------------------- */

/* General Form Styles for Kids Mode */
#storybot-kids-form {
    max-width: 900px;
    width: 100%;
    font-size: 0.9em;
    margin: 24px auto;
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 2px solid #dce5ff;
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(92, 107, 192, 0.18);
    box-sizing: border-box;
    overflow: auto;
}

#storybot-kids-form input[type=text],
#storybot-kids-form textarea,
#storybot-kids-form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 2px solid #d6e0ff;
    border-radius: 14px;
    background: #ffffff;
    color: #2f3559;
    font-size: 18px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#storybot-kids-form textarea {
    resize: vertical;
    line-height: normal;
    overflow: auto;
    height: auto;
}

#storybot-kids-form select {
    -webkit-appearance: menulist-button;
    height: auto;
}

#storybot-kids-form input[type=text]:focus,
#storybot-kids-form textarea:focus,
#storybot-kids-form select:focus {
    border-color: #6f7cff;
    box-shadow: 0 0 0 4px rgba(111, 124, 255, 0.16);
    outline: none;
}

#storybot-kids-form label {
    color: #3d4570;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

/* Button Styles */
#storybot-kids-form button {
    width: 100%;
    padding: 14px 24px;
    margin-top: 20px;
    background: linear-gradient(135deg, #6f7cff 0%, #8f79ff 100%);
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 12px 24px rgba(111, 124, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#storybot-kids-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(111, 124, 255, 0.35);
    filter: brightness(1.03);
}
