.dst-container {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
#dst-keyword {
    padding: 10px;
    width: 60%;
    margin-bottom: 10px;
}
#dst-search-btn {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 5px;
}
#dst-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 20px;
}
.dst-item {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}
.dst-item:hover {
    background: #e6f7ff;
}
.dst-item a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    font-size: 14px;
}