/* Sipariş Sayfaları CSS */
.card-modern {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 30px;
}

.card-modern .card-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px;
    position: relative;
}

.card-modern .card-header h2,
.card-modern .card-header h4 {
    margin: 0;
    color: #333;
}

.card-modern .card-header .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.card-modern .card-body {
    padding: 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
    opacity: 0.6;
}

.process-step.active {
    opacity: 1;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15%;
    width: 30%;
    height: 2px;
    background-color: #e5e5e5;
    z-index: 0;
}

.process-step.active:not(:last-child):after {
    background-color: #dc3545;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f7f7f7;
    border: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #999;
    position: relative;
    z-index: 1;
}

.process-step.active .step-icon {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.step-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.process-step.active .step-text {
    color: #333;
    font-weight: 700;
}

/* Responsive düzenlemeler için Bootstrap sınıflarını kullanıyoruz */
@media (max-width: 767px) {
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
}

.badge {
    padding: 5px 10px;
    font-size: 12px;
    text-transform: uppercase;
}
