.text-gradient-purple {
    background: linear-gradient(45deg, #ffffff 40%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-navy {
    color: #0A1D37;
}

.bg-modern-navy {
    background-color: #0A1D37;
}

.bg-soft-navy {
    background-color: rgba(10, 29, 55, 0.03);
}

.sidebar-block-header {
    border-bottom: 1px solid rgba(10, 29, 55, 0.05);
}

.btn-navy {
    background-color: #0A1D37;
    color: white;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: #07316f;
    color: white;
    transform: translateY(-2px);
}

.hover-translate-y {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-translate-y:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.transition-slow {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-translate-y:hover .transition-slow {
    transform: scale(1.1);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.extra-small {
    font-size: 0.75rem;
}

.last-child-mb-0:last-child {
    margin-bottom: 0 !important;
}

.pagination .page-link {
    color: #0A1D37;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #0A1D37;
    border-color: #0A1D37;
    color: white;
}

/* Custom circular style for Laravel pagination */
.custom-pagination .pagination {
    gap: 8px;
}

.custom-pagination .page-item .page-link {
    border-radius: 50% !important;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #0A1D37;
    font-weight: 600;
}

.custom-pagination .page-item.active .page-link {
    background-color: #0A1D37;
    color: white;
}

.custom-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    background-color: #f8f9fa;
}
