.add-story-overlay {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.add-story-modal {
    background: #fff;
    width: 450px;
    padding: 25px;
    border-radius: 8px;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

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

.add-story-content label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.add-story-content input,
.add-story-content textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.add-story-content textarea {
    resize: vertical;
    height: 80px;
}

.save-btn {
    background-color: #2b74ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}

.add-story-response {
    margin-top: 12px;
    font-weight: bold;
}
