.order-tracking-module {
    font-family: 'Inter', sans-serif;
}

.card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
}

.feature-item {
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.empty-state, .welcome-state {
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    padding: 8px 0;
}

.info-item label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 4px;
    color: #6c757d;
}

.table th {
    border-top: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f8f9fa;
}

.table td {
    vertical-align: middle;
    border-color: #e9ecef;
}

.btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.order-details .info-grid {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.order-details .table-sm th,
.order-details .table-sm td {
    padding: 0.5rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.custom-notification {
    animation: slideInRight 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-tracking-module .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-group-sm > .btn {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}