/* General pagination link styles */
.pagination .page-link {
    color: #AB25A8; /* Theme color */
    font-size: 18px;
    padding: 8px 12px;
    border: none;
    background-color: #fff; /* White background for inactive links */
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none; /* No underline on hover */
}

/* Active page item */
.pagination .page-item.active .page-link {
    background-color: #AB25A8; /* Theme color */
    color: #fff; /* White text for contrast */
    border-radius: 5px;
}

/* Hover effect: background matches active state */
.pagination .page-link:hover {
    background-color: #AB25A8; /* Same as active background */
    color: #fff; /* White text on hover */
    text-decoration: none; /* No underline */
    border-radius: 5px;
}

/* Disabled pagination links */
.pagination .page-item.disabled .page-link {
    color: rgba(171, 37, 168, 0.4); /* Lighter version of theme color for disabled */
    pointer-events: none;
}

/* Keep pagination links close together */
.pagination .page-item {
    margin: 0; /* No extra spacing between pagination items */
}

/* Left and right paddles (prev/next buttons) */
.pagination .page-item.prev .page-link,
.pagination .page-item.next .page-link {
    background-color: #AB25A8; /* Theme color for paddles */
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.prev .page-link:hover,
.pagination .page-item.next .page-link:hover {
    background-color: rgba(171, 37, 168, 0.8); /* Darker hover effect for paddles */
}

/* Left arrow */
.pagination .page-link-prev::before {
    content: '‹'; /* Left arrow */
    font-size: 16px;
    color: #fff;
}

/* Right arrow */
.pagination .page-link-next::before {
    content: '›'; /* Right arrow */
    font-size: 16px;
    color: #fff;
}

/* Pagination container */
.pagination {
    justify-content: center; /* Center the pagination */
}


.social-icons a {
    color: #333; /* Default icon color */
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icons a:hover {
    color: #AB25A8; /* White color when hovered */
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #AB25A8; /* Your brand color */
    z-index: -1; /* Behind the icon */
    transition: all 0.3s ease;
    opacity: 0;
    border-radius: 50%;
}

.social-icons a:hover::before {
    opacity: 1;
    transform: scale(1.5); /* Grow the overlay on hover */
}

.featured-box .icon-featured {
    border-radius: 50%;
    padding: 20px;
    background-color: #a8a785; /* Default grey as 'venue' */
    transition: background-color 0.3s ease;
}

.role-button {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.featured-box:hover .icon-featured {
    background-color: grey; /* Highlight color on hover */
}

.active-role .icon-featured {
    background-color: #FFD700; /* Golden background for active roles */
}

.text-success {
    color: #28a745; /* Green for 75%+ */
}

.text-warning {
    color: #ffc107; /* Amber for 50-75% */
}

.text-danger-light {
    color: #fd7e14; /* Light red for 25-50% */
}

.text-danger-dark {
    color: #dc3545; /* Dark red for less than 25% */
}
.star-rating i.fa-regular.fa-star:hover {
    color: #ccc; /* Grey color for hovered stars */
    transition: color 0.2s ease-in-out; /* Smooth transition */
}

.star-rating i.fa-solid {
    color: #f39c12; /* Gold color for selected stars */
}
