.favorite-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

/* Apply transition to all icons */
.favorite-btn img,
.delete-btn img,
.archive-btn img {
    transition: all 0.3s ease;
}

/* Hover effect: scale up */
.favorite-btn:hover img,
.delete-btn:hover img,
.archive-btn:hover img {
    transform: scale(1.1);
}

.favorite-btn.saved img,
.delete-btn.saved img,
.archive-btn.saved img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.save-date {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Saved Jobs Tab Styles */
.saved-jobs-tab {
    margin-top: 20px;
}

.saved-jobs-tab .job-card {
    position: relative;
}

.saved-jobs-tab .favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Pagination Styles */
.saved-jobs-pagination {
    margin-top: 20px;
    text-align: center;
}

.saved-jobs-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.saved-jobs-pagination .page-numbers.current {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.saved-jobs-pagination .page-numbers:hover:not(.current) {
    background-color: #f8f9fa;
} 
.favorite-btn {
    background-color: transparent !important;
}
