/* Directory Admin - New Entry Form Styles */

.da-new-entry-wrapper {
    margin: 20px 0;
}

.da-new-entry-trigger {
    display: inline-block;
    padding: 12px 24px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.da-new-entry-trigger:hover {
    background: #005a87;
    color: #fff;
}

/* Embedded Form Styles */
.da-new-entry-embed {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.da-new-entry-embed h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #23282d;
}

.da-new-entry-embed .da-cancel-btn {
    display: none;
}

/* The modal and form styles inherit from frontend.css */
/* Only need to add any specific overrides or additions here */

#da-new-entry-form h3 {
    margin: 25px 0 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e4e7;
    color: #23282d;
    font-size: 16px;
}

/* Category Checkboxes */
.da-categories-list {
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    max-height: 300px;
    overflow-y: auto;
}

.da-category-checkbox {
    cursor: pointer;
    padding: 4px 0;
}

.da-category-checkbox:hover {
    background: #f0f0f0;
}

.da-category-checkbox input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.da-form-group .description {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}