/**
 * DLP Frontend Edit Styles
 */

 .dlp-frontend-edit-container {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 20px;
    /* background: #fff; */
    /* border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.dlp-frontend-edit-form {
    margin: 0;
    padding: 0;
}

.dlp-frontend-edit-row {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.dlp-frontend-edit-label {
    width: 30%;
    padding-right: 20px;
    box-sizing: border-box;
}

.dlp-frontend-edit-field {
    width: 70%;
}

.dlp-frontend-edit-message {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 3px;
}

.dlp-frontend-edit-message p {
    margin: 0;
    padding: 0;
}

.success {
    background-color: #51b45a;
    color: white;
    border: 1px solid rgb(121, 121, 121);
}

.error {
    background-color: #ee3939;
    color: white;
    border: 1px solid rgb(121, 121, 121);
}

.loading {
    background-color: #0073aa;
}

.dlp-frontend-edit-form input[type="text"],
.dlp-frontend-edit-form input[type="email"],
.dlp-frontend-edit-form select {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.dlp-frontend-edit-form select[multiple] {
    height: 120px;
}

.dlp-frontend-trash-button {
    background: #dc3232 !important;
    color: #fff !important;
    border-color: #dc3232 !important;
}

.dlp-frontend-trash-button:hover {
    background: #c92222 !important;
    border-color: #c92222 !important;
}

p.description {
    margin-top: 5px;
    font-size: 0.9em;
    color: #666;
}

.dlp-frontend-edit-submit-row {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.dlp-frontend-edit-submit-row .dlp-frontend-edit-field {
    text-align: right;
}

/* Add to the CSS file */
.dlp-featured-image-preview {
    margin-bottom: 10px;
}

.dlp-featured-image-preview img {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.dlp-no-featured-image {
    padding: 15px;
    background: #f7f7f7;
    border: 1px dashed #ccc;
    color: #777;
    text-align: center;
    margin-bottom: 10px;
}

.dlp-remove-featured-image {
    margin-top: 5px !important;
}

#dlp-excerpt {
    width: 100%;
    box-sizing: border-box;
}

.dlp-document-status-message {
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    border-left: 4px solid;
}

.dlp-document-status-message p {
    margin: 0;
    display: flex;
    align-items: center;
}

.dlp-document-status-message .dashicons {
    margin-right: 8px;
    font-size: 20px;
}

/* Status-specific styles */
.dlp-status-pending {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

.dlp-status-draft {
    background-color: #e8f4f8;
    border-color: #5bc0de;
    color: #31708f;
}

.dlp-status-trash {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

.dlp-status-future {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

.dlp-moderation-notice {
    background-color: #f8f8f8;
    border-color: #ddd;
    color: #666;
}

/* Fix Select2 placeholder display */
.select2-search__field {
    width: 100% !important; 
}

.select2-container--default .select2-selection--multiple .select2-search--inline {
    width: auto !important;
    min-width: 100px !important;
    flex-grow: 1;
}

.select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
    min-width: 150px;
    margin-top: 3px;
    margin-left: 5px;
    font-size: 14px;
    color: #666;
}

/* Make the placeholder more visible */
.select2-search__field::placeholder {
    color: #757575 !important;
    opacity: 1 !important;
}

/* Ensure selection container has appropriate height */
.select2-container--default .select2-selection--multiple {
    min-height: 38px;
    padding: 2px 5px;
}

/* Make the multiple selection box wider */
.select2-container {
    width: 100% !important;
    min-width: 250px;
}

.dlp-select2-selection .select2-search__field {
    width: 100% !important;
    min-width: 150px !important;
    margin-top: 3px;
    margin-left: 5px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .dlp-frontend-edit-label,
    .dlp-frontend-edit-field {
        width: 100%;
    }
    
    .dlp-frontend-edit-label {
        margin-bottom: 5px;
    }
}

.dlp-add-new-category {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.dlp-add-new-category input[type="text"] {
    flex: 1;
    padding: 6px 10px;
}

.dlp-add-new-category button {
    white-space: nowrap;
}