#ifrm_framework {
    display: none;
}

/* Animated Spinner Styles */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button loading state styles */
.button-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-loading .spinner {
    margin-right: 0;
}