/* Pagination Styles */
.pray-wat-pagination {
    text-align: center;
    margin-top: 20px;
}

.pray-wat-pagination a,
.pray-wat-pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.pray-wat-pagination a:hover {
    background: #f1f1f1;
}

.pray-wat-pagination span {
    background: #008CBA;
    color: white;
}
/* hieu ung khi nhan vao phan trang*/

.pray-wat-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pray-wat-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #008CBA;
    animation: pray-wat-spin 0.6s linear infinite;
}

@keyframes pray-wat-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* hieu ung khi nhan vao phan trang end*/
/* Pagination Styles end */