.WOG-law-firm-form-group {
    margin-bottom: 20px;
}

.WOG-law-firm-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.WOG-law-firm-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.WOG-submit-btn {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.WOG-submit-btn:hover {
    background-color: #005a87;
}

.WOG-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.hierarchical-checkbox-container {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.practice-main-category {
    margin-bottom: 10px;
}

.practice-category {
    margin-bottom: 5px;
}

.dropdown-checkbox-container {
    position: relative;
}

.dropdown-checkbox-list {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    width: 100%;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.checkbox-options {
    padding: 10px;
}

.checkbox-options label {
    display: block;
    margin-bottom: 5px;
}

#law-firm-registration-message.success {
    color: green;
    padding: 10px;
    border: 1px solid green;
    border-radius: 4px;
    margin-bottom: 20px;
}

#law-firm-registration-message.error {
    color: red;
    padding: 10px;
    border: 1px solid red;
    border-radius: 4px;
    margin-bottom: 20px;
}


.wone-law-firm-button {
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #32d0d2;  /* SAME background as screenshot */
    color: #ffffff;             /* White text */
    border-radius: 0;           /* Square corners */
    transition: background-color 0.3s;
}

.wone-law-firm-button:hover {
    background-color: #29b6b7;  /* Slightly darker teal on hover */
}

