/* BasePress AJAX Loading Styles */
.basepress-loading {
    text-align: center;
    padding: 50px 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.basepress-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(73, 156, 255, 0.2);
    border-top-color: #499cff;
    border-radius: 50%;
    animation: basepress-spin 1s linear infinite;
    margin-bottom: 15px;
}

.basepress-loading p {
    color: #555;
    font-size: 16px;
    margin-top: 10px;
}

@keyframes basepress-spin {
    to { transform: rotate(360deg); }
}

/* Smooth transition for content */
.bpress-main {
    transition: opacity 0.3s ease;
}

.bpress-main.ajax-loading {
    opacity: 0.5;
}