
.wa-search-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.search-section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #dcdfd6;
    /* border-bottom: 1px solid #444; */
    padding-bottom: 0.4rem;
}


.wa-search-results {
    max-width: 600px;
    width: 100%;
	color: #dcdfd6;
}

.wa-search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wa-search-results li {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
	color: #c4c6bd;
	/*margin-bottom: 5px;*/
	line-style: none;
	border-bottom: 1px solid #dcdfd650;
}

.wa-search-results li:nth-child(1) { animation-delay: 0.1s; }
.wa-search-results li:nth-child(2) { animation-delay: 0.2s; }
.wa-search-results li:nth-child(3) { animation-delay: 0.3s; }
.wa-search-results li:nth-child(4) { animation-delay: 0.4s; }
.wa-search-results li:nth-child(5) { animation-delay: 0.5s; }
.wa-search-results li:nth-child(6) { animation-delay: 0.6s; }
.wa-search-results li:nth-child(7) { animation-delay: 0.7s; }
.wa-search-results li:nth-child(8) { animation-delay: 0.8s; }
.wa-search-results li:nth-child(9) { animation-delay: 0.9s; }
.wa-search-results li:nth-child(10) { animation-delay: 1s; }
.wa-search-results li:nth-child(11) { animation-delay: 1.1s; }
.wa-search-results li:nth-child(12) { animation-delay: 1.2s; }
.wa-search-results li:nth-child(13) { animation-delay: 1.3s; }
.wa-search-results li:nth-child(14) { animation-delay: 1.4s; }
.wa-search-results li:nth-child(15) { animation-delay: 1.5s; }
.wa-search-results li:nth-child(16) { animation-delay: 1.6s; }
.wa-search-results li:nth-child(17) { animation-delay: 1.7s; }
.wa-search-results li:nth-child(18) { animation-delay: 1.8s; }
.wa-search-results li:nth-child(19) { animation-delay: 1.9s; }
.wa-search-results li:nth-child(20) { animation-delay: 1.0s; }
.wa-search-results li:nth-child(21) { animation-delay: 1.1s; }
.wa-search-results li:nth-child(22) { animation-delay: 1.2s; }
/* Add more as needed or handle dynamically with JS */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: improve link spacing and appearance */

.wa-search-results li a {
	display:block;
	padding: 5px 10px;
	color: #c4c6bd;
	font-size: 1.2em;
	text-decoration: none;
	background-color: #191919;
    transition: background-color 0.3s ease, padding 0.6s ease;
}

.wa-search-results li a:hover {
	color: #191919;
    background-color: #c4c6bd;
    padding-left: 15px; /* 5px */
}

.wa-search-results li span {
    margin-left: 0;
    color: #777;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




