.isp-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background: #f0f4f8;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#isp-search, #isp-toggle-view {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}
#isp-states-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    list-style-type: none;
    padding: 0;
}
#isp-states-list li {
    background: white;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
#isp-states-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#isp-states-list li a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    display: block;
}
#isp-states-list li img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.dropdown-view select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
