.loader-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: #ffffff; 
    border: 2px solid #d4af37;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 20px auto;
    transition: all 0.3s ease;
}

.spinner-mini {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(212, 175, 55, 0.2);
    border-top: 4px solid #d4af37;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
}

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

.loader-box p {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
}

.hidden {
    display: none !important;
}
