* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.dashboard-wrapper {
    width: 100%;
    height: 100dvh;
    background: #ffffff;
}

.dashboard-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #23004d, #7b1fb3, #b23ad6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
}

.loader {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading.hide {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}