#checklist-page {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}

.checklist-search-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.checklist-search-bar > .input-group > .input-group-text
 {
    border-right: medium none;
    background: #fff;
}
#checklist-search-input
 {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--bs-border-color);
}
.checklist-search-bar > .input-group > input#checklist-search-input
 {
    border-left: medium none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.checklist-search-bar button#categoryDropdown {
    padding: 10px 15px;
}

#checklist-search-btn,
#checklist-reset-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

#checklist-search-btn {
    background: #494CF5;
}
#checklist-reset-btn {
    background: #444;
}

#selected-categories {
    margin-top: 15px;
}
.selected-cat {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 6px 12px;
    border-radius: 25px;
    margin: 4px;
    cursor: pointer;
    font-size: 14px;
}

.checklist-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
	
}
.checklist-item:hover {
	background: linear-gradient(277.05deg, #4A4CF6 0.77%, #7F5AFE 100%);
}
.checklist-item h3
 {
    color: #222;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 30px;
    transition: all 300ms ease;
}
.checklist-item:hover .checklist-content h3 {
    color: #fff;
}
.checklist-item h3 > a {
    color: inherit;
}
.checklist-item:hover .checklist-content .theme-btn.gradient
{
    background-color: transparent;
    background-image: linear-gradient(45deg, #f1f2f7 9.19%, #fff 93.59%);
    color: #494CF5;
}
.checklist-item p {
    color: #555;
}

#checklist-load-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#checklist-load-more .loader {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@media (min-width:768px) {
	.checklist-item {
		display: flex;
		align-items: center;
		gap: 25px;
	}
}
