/**
 * 文章操作按钮样式
 */

/* 文章标题容器 */
.article-title-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-title-container .title {
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
}

/* 文章操作按钮容器 */
.article-actions {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    flex-shrink: 0;
}

/* 文章操作按钮样式 */
.article-action-btn {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 0.75rem !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    color: #4a5568 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.article-action-btn:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    border-color: #667eea !important;
    color: #667eea !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15) !important;
    text-decoration: none !important;
}

.article-action-btn .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.875rem !important;
}

.article-action-btn .action-text {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}

.article-action-btn i {
    font-size: 0.875rem !important;
    transition: all 0.3s ease !important;
}

/* 激活状态 */
.article-action-btn.active {
    background: rgba(102, 126, 234, 0.15) !important;
    border-color: #667eea !important;
    color: #667eea !important;
}

.article-action-btn.active .action-text {
    color: #667eea !important;
}

/* 黑暗模式样式 */
.dark-theme .article-action-btn {
    background: rgba(45, 55, 72, 0.9) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
}

.dark-theme .article-action-btn:hover {
    background: rgba(102, 126, 234, 0.2) !important;
    border-color: #90cdf4 !important;
    color: #90cdf4 !important;
}

.dark-theme .article-action-btn.active {
    background: rgba(102, 126, 234, 0.25) !important;
    border-color: #90cdf4 !important;
    color: #90cdf4 !important;
}

.dark-theme .article-action-btn .action-text {
    color: #e2e8f0 !important;
}

.dark-theme .article-action-btn:hover .action-text,
.dark-theme .article-action-btn.active .action-text {
    color: #90cdf4 !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-title-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .article-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .article-action-btn {
        padding: 0.375rem 0.5rem !important;
        font-size: 0.8125rem !important;
    }
    
    .article-action-btn .icon {
        font-size: 0.8125rem !important;
    }
    
    .article-action-btn .action-text {
        font-size: 0.8125rem !important;
    }
    
    .article-action-btn i {
        font-size: 0.8125rem !important;
    }
}

@media (max-width: 480px) {
    .article-actions {
        gap: 0.25rem;
    }
    
    .article-action-btn .action-text {
        display: none;
    }
    
    .article-action-btn {
        padding: 0.5rem !important;
        min-width: 2.5rem !important;
    }
}





