/* Custom styles added as part of DXT-1114 */
a.disabled[aria-disabled="true"] {
    color: #ffffff; /* Matching the color of primary buttons */
    pointer-events: none; /* Prevent clicks on disabled links */
    cursor: default; /* Change cursor to default for disabled links */
}

/* HTMLPanelComponent styles */
.information-panel-html {
    padding: 14px;
    max-width: 900px;
}

.information-panel-html > *:first-child {
    margin-top: 0;
}

.information-panel-html > *:last-child {
    margin-bottom: 0;
}

.information-panel-html--outline {
    border: 2px solid #d8d8d9;
}

@media (max-width: 767px) {
    .information-panel-html {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
        padding-top: 14px;
        padding-bottom: 14px;
    }
}