/**
 * Titles Skin Styles - Simple title list
 */

.simple-board-titles {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.titles-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.title-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.title-item:last-child {
    border-bottom: none;
}

.title-item:hover {
    background-color: #f8f9fa;
}

.title-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.title-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #007cba;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.title-main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.title-link:hover {
    color: #007cba;
    text-decoration: underline;
}

.file-indicator {
    font-size: 14px;
    color: #666;
    opacity: 0.7;
}

.title-meta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.title-meta .author {
    color: #007cba;
    font-weight: 500;
}

.title-meta .date {
    color: #999;
}

.title-meta .views {
    color: #666;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-content {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .title-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .title-link {
        font-size: 15px;
    }
    
    .title-meta {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    
    .title-meta .author,
    .title-meta .date,
    .title-meta .views {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .title-content {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .title-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .title-link {
        font-size: 14px;
        line-height: 1.3;
    }
    
    .title-meta {
        align-items: flex-start;
        gap: 6px;
    }
}

/* Loading Animation */
.title-item.loading {
    opacity: 0.6;
    pointer-events: none;
}

.title-item.loading .title-link {
    color: #ccc;
}

/* Empty State */
.simple-board-titles .simple-board-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}
