/**
 * İş Başvuru Formu - Modül Stilleri
 * Bağımsız CSS — sinav-basvuru.css'e bağımlılık yok
 */

/* Body */
.is-basvuru-page {
    background-color: #f5f7fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.is-basvuru-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.is-basvuru-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.is-basvuru-logo {
    height: 36px;
    width: auto;
}

/* Content */
.is-basvuru-content {
    flex: 1;
}

/* Footer */
.is-basvuru-footer {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
    background: #fff;
    font-size: 0.8125rem;
}

/* Wizard Sol Panel */
.wizard-step {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    margin-bottom: 4px;
    border-radius: 8px;
    cursor: default;
    transition: all 0.2s ease;
    color: #6c757d;
    font-size: 13px;
}

.wizard-step.active {
    background: #eef2ff;
    color: #3D5EE1;
}

.wizard-step.completed {
    color: #198754;
}

.wizard-step-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
    background: #f0f0f0;
    transition: all 0.2s ease;
}

.wizard-step.active .wizard-step-icon {
    background: #3D5EE1;
    color: #fff;
}

.wizard-step.completed .wizard-step-icon {
    background: #198754;
    color: #fff;
}

/* Wizard Panel */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
}

/* Repeater Kartları */
.repeater-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
    background: #fafbfc;
}

.repeater-card .repeater-remove {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Responsive */
@media (max-width: 575.98px) {
    .is-basvuru-logo {
        height: 30px;
    }
}
