/**
 * style_admin.css
 * Core system styles for admin features and common UI elements
 */

/* Admin floating buttons */
.admin-btn-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
}

/* Inline editing placeholders/wrappers */
.editable-area {
    position: relative;
    border: 1px dashed transparent;
    transition: border 0.3s;
}

.editable-area:hover {
    border-color: #dc3545;
}

.admin-edit-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

.editable-area:hover .admin-edit-btn {
    opacity: 1;
}

/* Common modal tweaks for admin */
.modal-lg-custom {
    max-width: 90%;
}

/* News card admin styles */
.news-card {
    position: relative;
}

.admin-edit-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}