h3.blue-heading{
    color: #0082FF;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; 
    margin-bottom: 32px;
}
h4.sub-heading{
    text-align: left;
    color: #535353;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; 
    margin-bottom: 12px;
}

.dac8 .light-text {
    font-size: 13px;
    color: #808182;
    font-style: normal;
    font-weight: 500 !important;
}
.dac8 .btn-dac8 {
    margin-top: 0 !important;
}

.dac8 .input.radio label{
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.dac8 .input.checkbox label{
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

#call-support-button {
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    padding: 10px 16px; 
    border-radius: 3px; 
    background: #E1EEF9; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    i {
        color: #0082FF;
    }
}

#call-support-button span {
    color: #0082FF; font-size: 12px; font-style: normal; font-weight: 900;
}

.tin-notification {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px;
    margin-bottom: 16px;
    color:#007AF0;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.13px;
}

.tin-notification i {
    color: #007AF0;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tin-notification span {
    color: #007AF0;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.13px;
    text-align: left;
}

#call-support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tin-error {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px;
    margin-bottom: 16px;
    color: #C81E1E;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.tin-error i {
    color: #C81E1E;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tin-error-content {
    display: flex;
    text-align: left;
    flex-direction: column;
    color: #C81E1E;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.out-of-scope-banner {
    background-color: #CCE6FF;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.out-of-scope-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.out-of-scope-header i {
    color: #1F3347;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 8px;
}

.out-of-scope-header > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.out-of-scope-title {
    color: #1F3347;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    text-align: left;
}

.out-of-scope-text {
    color: #1F3347;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    text-align: left;
}
.tax-dropdown-label {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    label {
        margin-bottom: 0;
    }
}
.remove-tax {
    color: #FF3A44;
    text-align: right;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.country-select-trigger {
    width: 100%;
    padding: 7px 16px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1F3347;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.country-select-trigger:hover {
    border-color: #0082FF;
}

.country-select-trigger.error-field {
    border-color: #C81E1E;
    box-shadow: 0 0 0 1px #C81E1E;
}

.country-select-text {
    flex: 1;
    text-align: left;
}

.country-select-trigger i {
    color: #808182;
    font-size: 12px;
    transition: transform 0.2s;
}

.country-select-trigger:hover i {
    color: #0082FF;
}

/* Country Selection Modal */
.country-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-modal-overlay.show {
    opacity: 1;
}

.country-modal-content {
    background: white;
    border-radius: 10px;
    width: 40%;
    max-width: 500px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .country-modal-content {
        width: 90%;
    }
    .dialog-content {
        width: 90%;
    }
}

.country-modal-overlay.show .country-modal-content {
    transform: scale(1);
}

.country-modal-header {
    padding: 27px 24px 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1F3347;
}

.country-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #808182;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s;
}

.country-modal-close:hover {
    color: #535353;
}

.country-modal-search {
    padding: 16px 24px;
}

.country-modal-search input {
    width: 100%;
    padding: 13px 12px;
    border: 1px solid #e9e9e9;
    font-size: 16px;
    color: #535353;
    line-height: 44px;
    height:44px;
    transition: border-color 0.2s;
}

.country-modal-search input:focus {
    outline: none;
    border-color: #0082FF;
}

.country-modal-list {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0 27px 0;
}

.country-item {
    padding: 12px 11px;
    margin: 0 25px;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.country-item:hover {
    background-color: #F6F7F9;
}

.country-item-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.country-flag-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F6F7F9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.country-flag {
    font-size: 20px;
    line-height: 1;
    display: block;
}

.country-name {
    font-size: 13px;
    font-weight: 700;
    color: #1F3347;
}

.country-selected {
    color: #0082FF;
    font-weight: 700;
    font-size: 16px;
}

/* Scrollbar styling for modal list */
.country-modal-list::-webkit-scrollbar {
    width: 6px;
}

.country-modal-list::-webkit-scrollbar-track {
    background: #F5F5F5;
}

.country-modal-list::-webkit-scrollbar-thumb {
    background: #D1D1D1;
    border-radius: 3px;
}

.country-modal-list::-webkit-scrollbar-thumb:hover {
    background: #B0B0B0;
}

.document-requirements {
    list-style: disc;
    padding: 0;
    margin-left: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}

.dac8-document{
    line-height: 22px;
    h4.sub-heading{
        margin-bottom: 0;
    }
}

#dac8-verification-country{
    text-align: left;
}