﻿/* Modal body should not exceed 400px height on mobile and should be scrollable */
@media (max-width: 768px) {
    .modal-body {
        max-height: 400px;
        overflow-y: auto;
    }
}

/* Scrollbar styling */
.tracking-status-list {
    max-height: 300px;
    overflow-y: auto;
}

.list-group-item {
    display: flex;
    align-items: center;
    padding: 10px;
}

    .list-group-item i {
        margin-right: 10px;
    }
