/* Container - Light Grey Background Effect */
.indaba-wrapper {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    max-width: 900px;
    margin: 20px auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

/* Header Section */
.indaba-header {
    padding: 30px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}
.indaba-header h2 {
    font-weight: 400;
    margin: 0 0 15px 0;
    font-size: 26px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.indaba-notice {
    background: #fdfdfd;
    border-left: 4px solid #7f8c8d;
    padding: 15px;
    margin-top: 15px;
    font-size: 0.9em;
    color: #555;
}

/* Sections */
.indaba-section-title {
    background-color: #eef2f5;
    padding: 15px 30px;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    color: #2c3e50;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
}

/* The Grid Layout (Label Left | Input Right) */
.indaba-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee; /* The divider lines */
    background: #fff;
    padding: 15px 30px;
    align-items: center;
}
.indaba-row.no-border {
    border-bottom: none;
}

.indaba-label {
    width: 30%;
    font-weight: 600;
    font-size: 14px;
    color: #444;
    padding-right: 15px;
}

.indaba-input {
    width: 70%;
}

/* Mobile Responsiveness */
@media (max-width: 650px) {
    .indaba-row { display: block; }
    .indaba-label { width: 100%; margin-bottom: 8px; }
    .indaba-input { width: 100%; }
}

/* Input Styling (The Indaba Grey) */
.indaba-input input[type="text"],
.indaba-input input[type="email"],
.indaba-input input[type="tel"],
.indaba-input select {
    width: 100%;
    padding: 10px 12px;
    background-color: #eff2f5; /* Light grey background from screenshot */
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.2s;
}

.indaba-input input:focus {
    background-color: #fff;
    border-color: #a0a0a0;
    outline: none;
}

/* Helper Text */
.indaba-input small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 11px;
}

/* Radio & Checkboxes */
.radio-group label {
    margin-right: 20px;
    font-size: 14px;
    cursor: pointer;
}
.checkbox-container {
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Help Icon (?) */
.help-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #7f8c8d;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 11px;
    margin-left: 5px;
    cursor: help;
}

/* Delegate Sub-header */
.delegate-block {
    border-bottom: 4px solid #eef2f5;
}
.indaba-sub-header {
    background: #fff;
    padding: 10px 30px;
    font-weight: bold;
    color: #2980b9;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* Buttons */
.indaba-actions {
    padding: 20px 30px;
    background: #fff;
}
.btn-secondary {
    background: transparent;
    border: 1px dashed #aaa;
    padding: 10px 20px;
    color: #555;
    cursor: pointer;
    border-radius: 4px;
}
.btn-secondary:hover {
    border-color: #333;
    color: #000;
}

.indaba-submit-area {
    padding: 30px;
    background: #f9f9f9;
    text-align: center;
    border-top: 1px solid #ddd;
}
.btn-submit {
    background-color: #2c3e50; /* Dark Navy */
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}
.btn-submit:hover {
    background-color: #34495e;
}

/* Alerts */
.indaba-alert {
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}
.success { background: #d4edda; color: #155724; }
.error { background: #f8d7da; color: #721c24; }