.profile-section {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
}

.my-profile-id-image {
    width: 50%;
    max-height: 300px;
    object-fit: cover;
    margin: 10px 0 !important;
}

.signature-wrapper {
    padding: 0 0 20px 0 !important;
}

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



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



/* Insurance documents section */
#insurance-documents {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
#insurance-documents th{
    color: white !important;
}

#insurance-documents th:last-child, 
#insurance-documents td:last-child {
    width: 1%; /* Keep the column as narrow as possible */
    white-space: nowrap; /* Prevent text from wrapping */
    text-align: center; /* Center the button */
}

#insurance-documents th,
#insurance-documents td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#insurance-documents thead {
    background: var(--pharmawp-color-blue);
    color: #ffffff;
}
    #insurance-documents th{
    color:black ;
}

#insurance-documents tbody tr td {
   vertical-align: middle;
}

#insurance-documents tbody tr:nth-child(even) {
    background: #f9f9f9;
}

#insurance-documents tbody tr:hover {
    background: #f1f1f1;
}


/* Responsive */
@media (max-width: 768px) {
    .my-profile-certificate-input-label {
        width: 45%;
    }

    .my-profile-id-image {
        width: 100%;
    }

    .profile-section {
        grid-template-columns: 1fr;
    }

}