.about-you-form-one-modal,
.about-you-form-two-modal{
    overflow-y: auto; 
    display: block; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 1000; 
    background: white; 
    padding: 20px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    border-radius: 0 !important; 
    max-width: 750px; 
    width: 100%; 
    height: 60%;
}

#skip-onboarding-btn{
    background-color: unset !important;
    border: none !important;
    color: white;
    text-decoration: underline;
}

.skip-onboarding-wrapper {
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    padding-top: 10px;
    text-align: center;
    min-width: 200px;
}

.skip-onboarding-wrapper button{
    width: 100%;
}

.insurance-file-row{
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 8px 0;
}


.training-certificates-container {
    padding-bottom: 10px;
}

.certificate-input-label {
    /* the button to select file */
    background-color: var(--pharmawp-color-blue) !important;
    width: 35%;
    text-align: center;
    height: 100%;
    color: white;
    padding: 8px 16px;
    border: 0;
}

.about-you-two-header h3 {
    margin: 0 !important;
}

.about-you-two-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about-you-two-blurb {
    padding-top: 15px;
}

.back-to-step-one {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    color: black !important;
}


/* Certificate Row Styling */
.certificate-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px;
    background: #ffffff !important;
}

/* Custom File Upload Button */
.custom-file-upload {
    display: inline-block;
    padding: 8px 12px;
    background: #007bff !important;
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    width: 150px;
    text-transform: uppercase;
    font-weight: bold;
}

.custom-file-upload:hover {
    background: #0056b3 !important;
}

/* Hide default file input */
.custom-file-upload input[type="file"] {
    display: none;
}

/* Input and Select Styling */
.certificate-select {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 65%;
}

/* Delete Button */
.delete-certificate {
    background: #ff4d4d !important;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 11px !important;
}

.delete-certificate:hover {
    background: #cc0000 !important;
}

/* Add Button */
.add-certificate {
    display: block;
    width: 100%;
    padding: 8px 16px !important;
    background: var(--pharmawp-color-blue) !important;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.add-certificate:hover {
    background: var(--pharmawp-color-blue) !important;
}



/* Responsive */
@media (max-width: 600px) {
    .certificate-input-label {
        width: 45%;
    }
    .skip-onboarding-wrapper{
        width: 100%;
        padding: 0;
    }
    
}
