.c911-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.c911-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.c911-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c911-distance {
    background: #001F95;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.c911-card-body {
    margin-top: 12px;
}

.c911-card a {
    text-decoration: none;
    color: #001F95;
}

.c911-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.c911-search-bar input,
.c911-search-bar select {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.c911-search-bar button {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    background: #001F95;
    color: #fff;
    cursor: pointer;
}

.c911-search-bar button:hover {
    opacity: 0.9;
}