/* Frontend butonu stili */
#kmyrs-read-button-wrap {
    margin: 20px 0;
    text-align: center;
}
.kmyrs-button {
    background-color: #ff5722; /* Okunmadı durumu */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    min-width: 150px;
}
.kmyrs-button:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}
.kmyrs-button.kmyrs-read {
    background-color: #4CAF50; /* Okundu durumu */
}
.kmyrs-button.kmyrs-read:hover {
    background-color: #43a047;
}

/* Admin paneli stili */
.kmyrs-admin-wrap h1 {
    font-weight: 700;
}
.kmyrs-admin-table th {
    font-weight: 600;
}
.kmyrs-thumbnail-cell img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}
.kmyrs-toggle-read-admin {
    background-color: #f44336;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.kmyrs-toggle-read-admin:hover {
    background-color: #d32f2f;
}
.kmyrs-toggle-read-admin.kmyrs-read {
    background-color: #4CAF50;
}
.kmyrs-toggle-read-admin.kmyrs-read:hover {
    background-color: #43a047;
}