.mobile-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Poppins, sans-serif !important;
}

.mobile-app--header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 9rem;
}

.mobile-app--header b {
    color: #24d3a5;
}

.mobile-app--logo {
    width: 40%;
}

.mobile-app h1, .mobile-app--header b {
    font-size: 2rem;
    font-weight: bold;
    font-family: Poppins, sans-serif !important;
}

.mobile-app--subheading {
    color: #0b0b0b;
    font-family: Poppins, sans-serif !important;
    align-self: flex-start;
    width: 100%;
    max-width: 400px;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mobile-app--container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-app--option {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
}

.mobile-app--option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 290px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Poppins, sans-serif !important;
}

.mobile-app--option-label:hover,
.mobile-app--option-label:focus,
.mobile-app--option-label:active,
.mobile-app--option-label:focus-visible {
    border-color: #24d3a5;
    border-width: 3px;
    box-shadow: 0 4px 8px rgba(0, 176, 80, 0.2);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-content--text {
    width: 80%;
}

.option-content svg {
    width: 3rem;
    height: 3rem;
    fill: #666;
}

.option-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #0b0b0b;
    font-family: Poppins, sans-serif !important;
}

.option-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: Poppins, sans-serif !important;
}

.mobile-app--container input[type="radio"].mobile-app--radio {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    flex-shrink: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    border: 2px solid #ccc !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    background-color: white !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
    margin-right: 0 !important;
    background-image: none !important;
    box-shadow: none !important;
}

.mobile-app--container input[type="radio"].mobile-app--radio:checked {
    border-color: #24d3a5 !important;
    background-color: #24d3a5 !important;
}

.mobile-app--container input[type="radio"].mobile-app--radio:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(36, 211, 165, 0.2) !important;
}

.mobile-app--container input[type="radio"].mobile-app--radio:before,
.mobile-app--container input[type="radio"].mobile-app--radio:after {
    display: none !important;
}

/* Override any global radio button styles */
.mobile-app input[type="radio"],
.mobile-app input[type="radio"]:before,
.mobile-app input[type="radio"]:after {
    all: unset !important;
}

/* Hide the automatically generated label for emptyLabel class */
.mobile-app input[type="radio"].emptyLabel + label[for="undefined"] {
    display: none !important;
}

/* Ensure emptyLabel radio buttons don't get default styling */
.mobile-app input[type="radio"].emptyLabel:before,
.mobile-app input[type="radio"].emptyLabel:after {
    display: none !important;
    content: none !important;
}

.mobile-app input[type="radio"].mobile-app--radio {
    width: 20px !important;
    height: 20px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border: 2px solid #ccc !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    background-color: white !important;
    background-image: none !important;
    box-shadow: none !important;
    display: inline-block !important;
}

.mobile-app--container input[type="radio"].mobile-app--radio:checked::after {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: white !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

.mobile-app--radio:checked + .mobile-app--option-label,
input[type="radio"]:checked + .mobile-app--option-label {
    border-color: #24d3a5 !important;
    border-width: 3px;
    background-color: #f8fff8 !important;
}

.mobile-app--option:has(.mobile-app--radio:checked) .mobile-app--option-label {
    border-color: #24d3a5;
    border-width: 3px;
}

.mobile-app--continue-btn {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-top: 20px;
    padding: .5rem 1rem .5rem 6rem;
    background-color: #24d3a5;
    color: white;
    border: none;
    border-radius: 2rem;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 176, 80, 0.3);
}

.mobile-app--continue-btn:hover:not(:disabled) {
    background-color: #24d3a5;
    box-shadow: 0 6px 12px rgba(0, 176, 80, 0.4);
}

.mobile-app--continue-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.mobile-app--continue-btn strong {
    font-size: 2rem;
}

.mobile-app--option-search {
    border-radius: 2rem !important;
    padding: 1.75rem !important;
    margin-bottom: 1rem !important;
    width: 80% !important;
    max-width: 400px !important;
    height: 40px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #0b0b0b !important;
    border: 1px solid #e0e0e0 !important;
}