/**
 * Kayıt modalı — breadcrumb (Oluştur / Doğrula / Yüklendi)
 */

.register-modal-content {
    padding-top: 1.25rem;
}

.register-progress-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.5rem;
    padding-right: 0.25rem;
}

.register-progress-header .register-progress {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 0;
    width: auto;
    margin-left: 0;
    margin-right: 0;
}

.register-progress-close {
    position: static;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin-top: 0;
    align-self: flex-start;
}

.register-progress-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.register-progress-bar {
    width: 100%;
    height: 2px;
    border-radius: 9999px;
    background-color: rgb(51, 51, 51);
    transition: height 0.25s ease, background-color 0.25s ease;
}

.register-progress-item.active .register-progress-bar {
    height: 4px;
    background-color: var(--primary-color, #e39214);
}

.register-progress-item.completed .register-progress-bar {
    height: 3px;
    background-color: var(--primary-color, #e39214);
}

.register-progress-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    transition: color 0.2s ease;
}

.register-progress-item.active .register-progress-label,
.register-progress-item.completed .register-progress-label {
    color: #fff;
}

.register-progress-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    opacity: 0.85;
}

.register-progress-item.active .register-progress-icon,
.register-progress-item.completed .register-progress-icon {
    opacity: 1;
}

@media (max-width: 380px) {
    .register-progress-label {
        font-size: 0.6875rem;
        gap: 0.25rem;
    }

    .register-progress-header {
        gap: 0.5rem;
    }
}
