/* Button Styles */
.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-next {
    background-color: #2b982b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-next:hover {
    background-color: #237723;
}

.btn-next:disabled {
    background-color: #aaaaaa;
    cursor: not-allowed;
}

.btn-back {
    background-color: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-back:hover {
    background-color: #5a6268;
}

.btn-test {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-test:hover {
    background-color: #2980b9;
}

.btn-add {
    background-color: #3F51B5;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.btn-add:hover {
    background-color: #3F51B5;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: none;
}

/* Industry code dropdown styling */
select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    position: relative;
    padding-right: 30px;
}

/* Ensure dropdown goes down */
.dropdown, .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    float: none !important;
    will-change: auto !important;
}

/* Force dropdown direction */
select option, select optgroup {
    direction: ltr;
}

/* Radio button styles */
.radio-options {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Required field indicator */
.required {
    color: red;
}

/* Section titles */
.section-title {
    margin-bottom: 30px;
}

.section-title h3 {
    color: #2b982b;
    font-size: 24px;
    margin-bottom: 10px;
}

.section-subtitle h4 {
    color: #333;
    font-size: 18px;
    margin: 20px 0 10px;
}

.form-instruction {
    color: #666;
    font-size: 14px;
}

/* Back link */
.back-link {
    display: inline-block;
    margin-bottom: 20px;
}

    .back-link a {
        color: #4755c3;
        text-decoration: none;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .back-link a:hover {
            text-decoration: underline;
        }
