#riseup-application-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.form-slide {
    display: none;
}

.form-slide.current-slide {
    display: block;
}

#form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.progress-step {
    padding: 10px 15px;
    background: #eee;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    flex: 1 1 150px;
    margin: 5px;
    transition: background 0.3s;
}

.progress-step.active {
    background: #0073aa;
    color: white;
}

.form-section {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="url"] {
    width: 100%;
    padding: 8px;
}

.form-group .description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-checkboxes label {
    display: block;
    margin-bottom: 10px;
}

.timetable {
    overflow-x: auto;
}

.timetable table {
    width: 100%;
    border-collapse: collapse;
}

.timetable th,
.timetable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 12px;
}

.timetable th {
    background: #f4f4f4;
    font-weight: bold;
}

.timetable td {
    min-width: 100px;
}

.timetable label {
    display: block;
    margin: 0;
}

.timetable input[type="checkbox"] {
    margin-right: 5px;
}

.form-navigation {
    text-align: right;
}

.form-navigation button {
    padding: 10px 20px;
    margin-left: 10px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-navigation button:hover {
    background: #005177;
}

.success-message,
.error-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.success-message {
    background: #e6ffe6;
    color: #2e7d32;
}

.error-message {
    background: #ffe6e6;
    color: #d63638;
}

.invalid {
    border: 1px solid #d63638;
}

.guidelines {
    margin-bottom: 20px;
}

.guidelines h3 {
    margin-top: 0;
}

.guidelines ul {
    margin: 10px 0;
    padding-left: 20px;
}
