.add-story-child-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.add-story-child-modal {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
}

.add-story-child-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.add-story-child-close {
    cursor: pointer;
    font-size: 1.5em;
}

.add-story-child-content label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.add-story-child-content input,
.add-story-child-content textarea {
    width: 100%;
    padding: 6px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.add-story-child-content textarea {
    min-height: 80px;
}

.save-story-child-btn {
    margin-top: 15px;
    padding: 10px 18px;
    border: none;
    background-color: #2b74ff;
    color: white;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
}

.add-story-child-response {
    margin-top: 10px;
    font-size: 0.95em;
    color: #333;
}
