/* Custom styles for SurplusSeekers CRM */

body {
    background-color: #f8f9fa;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.badge-tag {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.6rem;
}

/* Status colors */
.status-open {
    color: #28a745;
}

.status-pending {
    color: #ffc107;
}

.status-closed {
    color: #dc3545;
}

/* Priority colors */
.priority-high {
    color: #dc3545;
}

.priority-medium {
    color: #ffc107;
}

.priority-low {
    color: #28a745;
}

/* Custom form styles */
.form-label {
    font-weight: 500;
}

/* Sidebar styles for larger screens */
@media (min-width: 992px) {
    .sidebar {
        position: fixed;
        top: 56px;
        bottom: 0;
        left: 0;
        z-index: 100;
        padding: 48px 0 0;
        box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
        height: calc(100vh - 48px);
        padding-top: .5rem;
        overflow-x: hidden;
        overflow-y: auto;
    }
}
