/* 自定义样式 */

/* 行截断 */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 过渡动画 */
.transition-shadow {
    transition: box-shadow 0.2s ease-in-out;
}

.transition-colors {
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* 滚动条样式 */
.log-content::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.log-content::-webkit-scrollbar-track {
    background: #2d2d2d;
}

.log-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.log-content::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* 响应式表格 */
@media (max-width: 640px) {
    .overflow-x-auto table {
        font-size: 0.875rem;
    }

    .overflow-x-auto th,
    .overflow-x-auto td {
        padding: 0.5rem;
    }
}
