/* Urban League Zip Search Styles */

.ulp-zip-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.ulp-programs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ulp-programs-list li {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #e31b23; /* Urban League Red */
}

.ulp-programs-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.ulp-programs-list li a:hover {
    color: #e31b23;
}

.zip-search-loading {
    color: #666;
    font-style: italic;
}

.text-danger {
    color: #dc3545;
}

/* Button Style (inheriting from theme usually, but adding fallback) */
.red-btn {
    background-color: #e31b23;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.red-btn:hover {
    background-color: #b9151c;
    color: #fff;
}

.red-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
