* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.loading-body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 6px solid #d1d5db;
    border-top: 6px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}