.kt550-news-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.kt550-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.kt550-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.kt550-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.kt550-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.kt550-card-body {
    padding: 15px;
}

.kt550-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.kt550-checkboxes {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kt550-pagination {
    margin-top: 20px;
    text-align: center;
}

.kt550-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Modal */
.kt550-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.kt550-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.kt550-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.kt550-close:hover {
    color: black;
}