/* CSS for Card Heading */
.cardHeading {
    font-size: 20px;
    font-weight: 600 !important;
    color: #161617;
}

/* CSS for Paragraph below the Card Heading */
.cardHeadingText {
    font-size: 16px;
    font-weight: 400 !important;
    color: #00000080;
}

/* CSS for file Upload logo */
#fileUploadLogo {
    object-fit: cover;
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

/* CSS Image drop Zone */
#dropZone {
    border: solid;
    border-color: #EAECF0;
    border-radius: 10px;
    text-align: center;
    padding: 16px 24px 16px 24px;
    width: fit-content;
}

/* CSS of Upload/Cloud Icon */
#cloudIconDiv {
    height: 40px;
    width: 40px;
    background-color: #F2F4F7;
    border-radius: 28px;
    border-color: #F9FAFB;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

/* CSS for Organization Avatar */
#organizationAvatar {
    width: 100px;
    height: 100px;
    border-radius: 200px;
    margin-right: 20px;
    border: 2px solid #CCE6FF;
    object-fit: cover;
}

/* CSS for All Label in the Form */
.labelHeading {
    font-size: 14px;
    font-weight: 500 !important;
    columns: #344054;
}

/* CSS fot Button Add Organization */
#btnAddOrganization {
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600 !important;
}

/* CSS fot Button Add Organization to Change Color on Hover*/

@media (min-width: 480px) {
    #btnAddOrganization:hover {
        background: #6941C6;
    }
}
/* CSS for Cancel Button */
#btnCancel {
    background-color: white;
    border: 1px solid #1098F799;
    font-size: 16px;
    color: #1098F7;
    font-weight: 600 !important;
}

/* CSS to change background color on hover effect on the Close button in submission modal */
#btnClose:hover {
    background: #6941C6;
}

/* The is-invalid-without-icon class is a custom class that overrides the default Bootstrap .is-invalid behavior by removing the background icon. */
.is-invalid-border-only {
    border-color: #dc3545 !important;
    /* Red border color */
    background-image: none;
    /* Remove the error icon */
    padding-right: 0.75rem;
    /* Adjust padding if necessary */
}
