* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;

}

.selectable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.selectable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.selected {
    border-color: #3498db !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25) !important;
}

.navbar-brand {
    font-weight: bold;
    color: #ffffffff !important;
}

.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-outline-light:hover {
    color: var(--bs-primary) !important;
}

.transfer-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.transfer-step {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 0 0.5rem;
    background-color: #ecf0f1;
    border: 2px solid transparent;
}

.transfer-step.active {
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
}

.transfer-step.completed {
    background-color: #27ae60;
    color: white;
}

.location-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    color: white;
    font-size: 2rem;
}

.filters-card {
    transition: all 0.3s ease;
}

.filter-toggle-btn {
    display: none;
}

.filters-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
    .filter-toggle-btn {
        display: block;
    }

    .filters-content {
        margin-top: 1rem;
    }

    .filters-collapse:not(.show) {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .filters-card .form-label {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .filters-card .form-control,
    .filters-card .form-select {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

    .filters-card .btn-sm {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

.filter-row {
    gap: 0.75rem;
}

.filter-actions {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .filter-actions {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        border-left: 1px solid #dee2e6;
        padding-left: 1rem;
    }
}