.group-latest-skin {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e1e1;
}

.latest-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.post-count {
    background: #007cba;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.latest-list {
    padding: 10px 0;
}

.latest-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-item:hover {
    background-color: #f8f9fa;
}

.item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.item-link:hover {
    color: #007cba;
}

.item-subject {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.new-badge {
    background: #ff4757;
    color: white;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: bold;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.board-name {
    background: #f1f3f4;
    padding: 2px 6px;
    border-radius: 4px;
}

.post-date {
    color: #999;
    min-width: 60px;
    text-align: right;
}

.no-posts {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-style: italic;
}

.board-list {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e1e1e1;
}

.board-list-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: bold;
}

.board-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.board-link {
    display: inline-block;
    padding: 4px 8px;
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 11px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.board-link:hover {
    background: #007cba;
    color: white;
    border-color: #007cba;
}

.no-data {
    padding: 20px;
    text-align: center;
    color: #666;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 10px 0;
}