     /* ======= FILTER HEADER ======= */
.headerf {
    display: flex;
    background-color: #f20000;
    padding: 5px;
    justify-content: center;
    align-items: center;
	
}
.headerf .center {
    color: #fff;
	margin-right:10px;
}
.hearnb {
    background-color: #e8e8e8;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

        #nk-filter label {
            font-size: 14px;
            margin-right: 10px;
            color: #fff;
        }

        #nk-filter input[type="date"] {
            padding: 5px 8px;
            border: none;
            border-radius: 4px;
        }

        .nk-type-group {
            display: inline-flex;
            gap: 6px;
            margin-left: 10px;
        }

        .nk-btn-type, .nk-btn-sort {
            border: 1px solid rgba(255,255,255,0.6);
            background: #fff;
            color: #222;
            padding: 6px 12px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
            backdrop-filter: blur(4px);
			
        }

        .nk-btn-type:hover, .nk-btn-sort:hover {
            background:#fff;
        }

        .nk-btn-type.active {
            background: #ffb74d;
            border-color: #ffa726;
            color: #000;
            font-weight: bold;
        }

        .nk-btn-sort.active {
            background: #4CAF50;
            color: white;
            border-color: #43A047;
            font-weight: bold;
        }

        /* ======= GRID STYLE ======= */
        .nk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            gap: 8px;
            padding: 15px;
            background: #fff;
            border: 1px solid #ddd;
        }

        .nk-item {
            text-align: center;
            background:#d8d8d8;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            font-size: 16px;
            position: relative;
			color:#fff;
        }
.nk-item div {
    line-height: 18px;
}
        .nk-item.active {
            background: #ffb74d;
            color: #fff;
        }

.nk-item small {
    font-size: 11px;
    font-weight: normal;
    line-height: 11px;
}

        @media(max-width:600px){
            .nk-item {
                width: 50px;
                height: 50px;
                font-size: 14px;
            }
        }
		

@media screen and (max-width: 728px) {	
		
.nk-grid {
    grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    gap: 5px;
    padding: 10px;
}
.nk-item {
    width: 35px;
    height: 35px;
}
.nk-item div {
    line-height: 13px;
}
.nk-item small {
    font-size: 10px;
}
	
}
	
.box-comment {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
  max-width: 600px;
}

.comment-form {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment-avatar img {
  border-radius: 50%;
  margin-right: 8px;
}

.comment-input {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 20px;
  margin-right: 5px;
}

.comment-send,
.emoji-btn {
  border: none;
  background: #f33;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 3px;
}

.comment-send:hover {
  background: #c00;
}

.comment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 5px;
}

.comment-body {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 6px 10px;
  flex: 1;
}

.comment-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 2px;
}

.comment-content {
  font-size: 14px;
  color: #333;
}

.comment-actions {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}

.comment-actions a {
  margin-right: 10px;
  text-decoration: none;
  color: #999;
}

.comment-actions a:hover {
  color: #000;
}

.emoji-picker {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 180px;
}

.emoji-picker .emoji {
  font-size: 20px;
  padding: 5px;
  cursor: pointer;
}
