/*
=================================================================
--- STYLES SPECIFIC TO THE AIRDROPS PAGE ---
=================================================================
*/

.page-header {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.page-search-section {
    margin-bottom: 40px;
}

.page-search-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.page-search-container .fa-magnifying-glass {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.page-search-container input {
    width: 100%;
    padding: 15px 20px 15px 55px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-glass);
    color: var(--text-primary);
    box-sizing: border-box;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.page-search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.25);
}

/*
=================================================================
--- STYLES FOR DYNAMIC AIRDROP TAGS (NEW) ---
=================================================================
*/
/* 
 Note: These styles rely on a base `.project-tag` class, 
 likely defined in your main `style.css`. These modifier 
 classes change the background color based on status.
*/

/* The tag for live airdrops */
.project-tag.tag-live {
    background-color: hsla(158, 100%, 35%, 0.85); /* Green with some transparency */
    color: #ffffff;
    border: 1px solid hsl(158, 100%, 40%);
}

/* The tag for ended airdrops */
.project-tag.tag-ended {
    background-color: hsla(210, 9%, 45%, 0.85); /* Grey with some transparency */
    color: #e0e0e0;
    border: 1px solid hsl(210, 9%, 50%);
}