/*
=====================================================
 DataLife Engine - Custom Loading Styles
-----------------------------------------------------
 Стили для AJAX подгрузки custom новостей
=====================================================
*/

/* Контейнер с подгрузкой */
.custom-loadable-container {
    position: relative;
    width: 100%;
}

/* Контент новостей */
.custom-content {
    width: 100%;
}

/* Обертка для кнопки загрузки */
.custom-load-more-wrapper {
    text-align: center;
    padding: 30px 0;
    margin: 20px 0;
}

/* Кнопка "Загрузить ещё" */
.custom-load-more-btn {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-load-more-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

.custom-load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.custom-load-more-btn:disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

@keyframes custom-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Анимация появления новых элементов */
@keyframes custom-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-content > * {
    animation: custom-fadeIn 0.5s ease-out;
}

/* Адаптив */
@media (max-width: 768px) {
    .custom-load-more-btn {
        padding: 10px 30px;
        font-size: 14px;
    }

    .custom-load-more-wrapper {
        padding: 20px 0;
        margin: 15px 0;
    }
}

/* Альтернативные стили для кнопки (можно раскомментировать) */

/* Стиль 1: Плоская кнопка */
/*
.custom-load-more-btn {
    background: #4CAF50;
    border-radius: 4px;
    box-shadow: none;
}

.custom-load-more-btn:hover {
    background: #45a049;
}
*/

/* Стиль 2: Обводка */
/*
.custom-load-more-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 25px;
}

.custom-load-more-btn:hover {
    background: #667eea;
    color: #ffffff;
}
*/

/* Стиль 3: Минималистичная */
/*
.custom-load-more-btn {
    background: #f5f5f5;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.custom-load-more-btn:hover {
    background: #e0e0e0;
}
*/
