#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#page-loader .spinner {
    width: 80px;
    height: 80px;
    border: 4px solid #fff;
    border-top: 4px solid #67A739;
    border-radius: 50%;
    animation: spin 0.8s ease-in-out infinite;
}

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

.template-container {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.template-container.loaded {
    opacity: 1;
} 