/* Customer Portal Styles */
.customer-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

.customer-dashboard {
    background-color: #f8f9fa;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-marker {
    position: absolute;
    left: -45px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.timeline-content h6 {
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin-bottom: 5px;
}

.progress {
    height: 8px;
    border-radius: 4px;
}

.badge {
    font-size: 0.75rem;
    padding: 0.5em 0.75em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -35px;
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}