/**
 * MARKTPLATZ11 Admin Backend - Custom Styles
 * Minimales Custom-CSS, hauptsächlich für Layout
 */

/* Layout */
body {
    overflow-x: hidden;
}

#wrapper {
    display: flex;
}

#sidebar-wrapper {
    min-height: 100vh;
    min-width: 250px;
    max-width: 250px;
    transition: margin 0.25s ease-out;
}

#page-content-wrapper {
    min-width: 0;
    width: 100%;
}

/* Sidebar */
.sidebar-heading {
    font-size: 1.2rem;
}

.list-group-item.active {
    background-color: #495057 !important;
    border-color: #495057 !important;
}

.list-group-item:hover {
    background-color: #495057 !important;
}

/* Responsive */
@media (max-width: 768px) {
    #sidebar-wrapper {
        margin-left: -250px;
    }
    
    #sidebar-wrapper.show {
        margin-left: 0;
    }
}

/* DataTables Anpassungen */
.dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

/* Cards */
.stat-card {
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Buttons */
.btn-sm {
    font-size: 0.875rem;
}

/* Tables */
.table td {
    vertical-align: middle;
}

/* Modal */
.modal-header {
    background-color: #f8f9fa;
}
