.sortable {
    cursor: pointer;
    transition: background-color 0.2s;
}

.sortable:hover {
    background-color: #f8f9fa;
}

.sortable.active {
    background-color: #e9ecef;
}

.sort-icon {
    opacity: 0;
    transition: opacity 0.2s;
}

.sortable:hover .sort-icon,
.sortable.active .sort-icon {
    opacity: 1;
}

.map-container {
    border: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    color: #000;
    font-weight: 500;
    border: 1px solid #ccc !important;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
}

@media (max-width: 768px) {
    .table-responsive {
        border: 0;
    }

    .table thead {
        display: none;
    }

    .table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 0.25rem;
    }

    .table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #dee2e6;
    }

    .table td::before {
        content: attr(data-label);
        font-weight: bold;
        margin-right: 1rem;
    }

    .table td:last-child {
        border-bottom: 0;
    }
}
