/* Conference Abstract Manager - Public Styles */

.cam-submission-wizard {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    direction: rtl;
}

.cam-wizard-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.cam-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.cam-progress-step {
    flex: 1;
    text-align: center;
}

.cam-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e0e0e0;
    font-weight: 700;
    margin-bottom: 8px;
}

.cam-step-active .cam-step-number {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.cam-wizard-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cam-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.cam-form-group-full {
    grid-column: 1 / -1;
}

.cam-input,
.cam-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
}

.cam-input:focus,
.cam-textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.cam-textarea {
    resize: vertical;
    min-height: 120px;
}

.cam-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.cam-btn-primary {
    background: #2563eb;
    color: #fff;
}

.cam-btn-secondary {
    background: #fff;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.cam-btn-success {
    background: #10b981;
    color: #fff;
}

.cam-wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.cam-notice {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.cam-notice-success {
    background: #d1fae5;
    color: #065f46;
}

.cam-notice-error {
    background: #fee2e2;
    color: #991b1b;
}
