/* Custom styling for Message Queue Dashboard */

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

/* Card custom styling */
.border-left-primary {
    border-left: 0.25rem solid #4e73df !important;
}

.border-left-success {
    border-left: 0.25rem solid #1cc88a !important;
}

.border-left-warning {
    border-left: 0.25rem solid #f6c23e !important;
}

.border-left-danger {
    border-left: 0.25rem solid #e74a3b !important;
}

/* Message body styling */
.message-body {
    font-size: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
    background-color: #f8f9fc;
    padding: 10px;
    border-radius: 5px;
    white-space: pre-wrap;
}

/* Modal styling */
#messageDetailsModal .modal-body {
    padding: 15px;
    background-color: #f8f9fc;
}

/* Table customizations */
#messagesTable {
    font-size: 0.9rem;
}

/* Card shadow effects */
.shadow {
    box-shadow: 0 .15rem 1.75rem 0 rgba(58, 59, 69, .15) !important;
}

/* Active filter button styling */
.btn-outline-primary.active,
.btn-outline-danger.active,
.btn-outline-secondary.active {
    color: white;
}

.icon-circle {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .sidebar {
        position: static;
        height: auto;
        padding-top: 0;
    }

    main {
        padding-top: 20px;
    }
}
