/**
 * MP Agency Search Plugin Styles
 */

/* Agency title */
.agency-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

/* Results count */
.results-count {
    font-size: 14px;
    color: #666;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

/* No results message */
.no-results {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.no-results p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Agency list shortcode styles */
.mp-agency-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.mp-agency-list li {
    margin: 0;
}

.mp-agency-list a {
    display: block;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mp-agency-list a:hover {
    background: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mp-agency-list .count {
    color: #999;
    font-size: 0.9em;
}

/* Single agency link */
.mp-agency-link {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mp-agency-link:hover {
    background: #0056b3;
    color: #fff !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .agency-title {
        font-size: 20px;
    }
    
    .mp-agency-list {
        grid-template-columns: 1fr;
    }
    
    .results-count {
        font-size: 12px;
        padding: 6px 12px;
    }
}

