:root {
    --okt-primary: #4f46e5;
    --okt-primary-hover: #4338ca;
    --okt-dark: #1e293b;
    --okt-gray: #64748b;
    --okt-light: #f8fafc;
    --okt-border: #e2e8f0;
    --okt-success: #10b981;
}

.okt-main-container {
    max-width: 650px;
    margin: 30px auto;
    font-family: system-ui, -apple-system, sans-serif;
}

.okt-form-card {
    background: #ffffff;
    border: 1px solid var(--okt-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.okt-title {
    margin: 0 0 6px 0;
    font-size: 20px;
    color: var(--okt-dark);
    font-weight: 700;
}

.okt-subtitle {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: var(--okt-gray);
}

.okt-field {
    margin-bottom: 16px;
}

.okt-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--okt-dark);
}

.okt-field select,
.okt-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--okt-border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--okt-light);
    outline: none;
    box-sizing: border-box;
    transition: border 0.2s;
}

.okt-field select:focus,
.okt-field textarea:focus {
    border-color: var(--okt-primary);
    background: #fff;
}

.okt-counter-info {
    text-align: right;
    font-size: 11px;
    color: var(--okt-gray);
    margin-top: 4px;
}

.okt-submit-btn {
    width: 100%;
    background: var(--okt-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.okt-submit-btn:hover {
    background: var(--okt-primary-hover);
}

/* Sonuç Kartları Tasarımı */
.okt-result-card {
    background: white;
    border: 1px solid var(--okt-border);
    border-radius: 12px;
    padding: 18px;
    margin-top: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.okt-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--okt-border);
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.okt-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.okt-progress-bar {
    height: 8px;
    background: var(--okt-border);
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.okt-progress-fill {
    height: 100%;
    background: var(--okt-success);
    transition: width 0.5s ease-in-out;
}

.okt-timeline {
    margin-top: 12px;
    font-size: 13px;
    border-left: 2px solid var(--okt-border);
    padding-left: 14px;
    margin-left: 6px;
}

.okt-timeline-item {
    margin-bottom: 10px;
    position: relative;
}