/* Form container */
#rifnote-internal-story-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Form groups */ 
#rifnote-internal-story-form .form-group {
    margin-bottom: 20px;
}

/* Labels */
#rifnote-internal-story-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Text inputs and select */
#rifnote-internal-story-form input[type="text"],
#rifnote-internal-story-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* TinyMCE editor */
#rifnote-internal-story-form #wp-content-wrap {
    max-width: 100%;
}

#rifnote-internal-story-form .wp-editor-tools {
    background: #f1f1f1;
    padding: 5px;
}

#rifnote-internal-story-form .wp-editor-container {
    border: 1px solid #ddd;
    height: 600px;
}

#rifnote-internal-story-form .mce-tinymce {
    border: none !important;
}

/* Featured image button */
#rifnote-internal-story-form #upload_image_button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

/* Featured image preview */
#rifnote-internal-story-form #featured_image_preview img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

/* Submit button */
#rifnote-internal-story-form input[type="submit"] {
    background-color: #0073aa;
    border-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

#rifnote-internal-story-form input[type="submit"]:hover {
    background-color: #005177;
    width: 100%;
}

/* Form message */
#form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}

#form-message p {
    margin: 0;
}

#form-message p.success {
    color: #4CAF50;
}

#form-message p.error {
    color: #F44336;
}

.rifnote-loading {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #888;
}