/* 自訂樣式（覆蓋 / 補充 Bootstrap 5） */

/* --- 後台側邊欄 ----------------------------------------------------------- */
/* 桌機：固定 220px 側邊欄；行動裝置：隨 d-flex flex-column 自動堆疊 */
.admin-sidebar {
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .admin-sidebar {
        width: 220px;
        min-height: 100vh;
    }
}
.admin-sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
}

/* --- 卡片懸浮效果（前台車輛卡片） ---------------------------------------- */
.car-card {
    transition: transform .15s ease, box-shadow .15s ease;
}
.car-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12) !important;
}

/* --- 後台車輛圖片縮圖 ----------------------------------------------------- */
.thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
}
