.str-edb56228-container {
    font-family: sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.str-edb56228-header h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.str-edb56228-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.str-edb56228-filters select,
.str-edb56228-filters button {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.str-edb56228-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.str-edb56228-btn:hover {
    background: #005177;
}

.str-edb56228-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    text-align: left;
}

.str-edb56228-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.str-edb56228-card h4 {
    margin: 0 0 10px 0;
}

.str-edb56228-card p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #555;
}

.str-edb56228-link-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background 0.2s;
}

.str-edb56228-link-btn:hover {
    background: #135e96;
    color: #fff;
}