/* admin.css */
.orm-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.orm-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 900px;
    position: relative;
}

.orm-close-modal {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.orm-close-modal:hover {
    color: #f00;
}

#orm-editor-message {
    margin-top: 15px;
    padding: 10px;
}

#orm-editor-message.error {
    background-color: #ffdddd;
    color: #f00;
}

#orm-editor-message.success {
    background-color: #ddffdd;
    color: #008000;
}

/* frontend.css */
.orm-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.orm-form-group {
    margin-bottom: 15px;
}

.orm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.orm-form-group textarea,
.orm-form-group input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.orm-form-group textarea {
    min-height: 100px;
}

.orm-submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.orm-submit-button:hover {
    background-color: #45a049;
}

.orm-response-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.orm-response-message.error {
    background-color: #ffdddd;
    color: #f00;
}

.orm-response-message.success {
    background-color: #ddffdd;
    color: #008000;
}