/* SK100 Registreerimisvorm */
#sk100-registration-wrap {
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.sk100-event-select {
    margin-bottom: 24px;
}

.sk100-event-select select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
}

.sk100-participant {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
}

.sk100-participant h4 {
    margin: 0 0 16px 0;
    color: #1A5276;
    font-size: 16px;
}

.sk100-remove-participant {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
}

.sk100-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 600px) {
    .sk100-fields-grid { grid-template-columns: 1fr; }
}

.sk100-field label {
    display: block;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 4px;
    color: #333;
}

.sk100-field input,
.sk100-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.sk100-eol-lookup {
    margin-bottom: 16px;
    padding: 12px;
    background: #EBF5FB;
    border-radius: 6px;
}

.sk100-eol-row {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.sk100-eol-row input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.sk100-btn-eol {
    background: #2E86C1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.sk100-btn-eol:hover { background: #1A5276; }

.sk100-eol-status {
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.sk100-distances-section {
    margin: 24px 0;
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.sk100-distances-section h3 {
    margin: 0 0 8px 0;
    color: #1A5276;
}

.sk100-hint {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
}

.sk100-distance-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.sk100-distance-label:hover { background: #EBF5FB; }

.sk100-distance-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.sk100-price {
    margin-left: auto;
    font-weight: bold;
    color: #1A5276;
}

.sk100-custom-field {
    margin: 12px 0;
}

.sk100-custom-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
}

.sk100-custom-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.sk100-total-section {
    margin: 20px 0;
    padding: 16px;
    background: #1A5276;
    color: white;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sk100-total-price {
    font-size: 24px;
    font-weight: bold;
}

.sk100-btn-primary {
    width: 100%;
    padding: 14px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.sk100-btn-primary:hover { background: #218838; }

.sk100-btn-secondary {
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin: 12px 0;
}

.sk100-btn-secondary:hover { background: #545b62; }