.spinner {
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#storyPrompt {
    width: 100%;
    margin-bottom: 10px;
	font-size: 16px;
}

#generateStoryBtn, #importGeneratedStory, #closeModal {
    margin-top: 10px;
}

#loadingIndicator {
    text-align: center;
    margin-top: 20px;
}

#generateStoryModal .modal-content {
    display: flex;
    position: relative;
    flex-direction: column;
}

#generateStoryModal textarea {
    margin-bottom: 10px;
}

#generateStoryModal button {
    margin-top: 10px;
}

#generateStoryModal .close {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#generateStoryModal .close:hover,
#generateStoryModal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}