@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap');

body {
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* 自定義滾動條樣式 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #EF4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DC2626;
}

/* 表格樣式 */
.table-container {
    overflow-x: auto;
}

table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background-color: #FEE2E2;
    color: #B91C1C;
    font-weight: 500;
    text-align: left;
    padding: 12px 16px;
    position: sticky;
    top: 0;
}

td {
    padding: 12px 16px;
    border-bottom: 1px solid #E5E7EB;
    vertical-align: middle;
}

tr:hover td {
    background-color: #FEE2E2;
}

/* 按鈕和輸入框動畫 */
button, .btn, input, select, textarea {
    transition: all 0.2s ease;
}

button:hover, .btn:hover {
    transform: translateY(-1px);
}

/* 響應式調整 */
@media (max-width: 640px) {
    .mobile-stack {
        flex-direction: column;
    }
    
    .mobile-stack > * {
        margin-bottom: 0.5rem;
    }
    
    .mobile-stack > *:last-child {
        margin-bottom: 0;
    }
}