body {
    font-family: 'Google Sans', 'Product Sans', sans-serif;
    background-color: #f8f9fa;
}

.card {
    border-radius: 12px;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

/* Animation Removed */
.hover-lift {
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

/* 
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
} */

.file-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.table-row-selectable {
    cursor: pointer;
    user-select: none;
}

.table-row-selected {
    background-color: #cfe2ff !important;
    position: relative;
}

.table-row-selected td:first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #0d6efd;
}

.table-hover tbody tr:hover {
    background-color: #f1f3f4;
}

.cursor-pointer {
    cursor: pointer;
}

/* Google Drive Style Chips */
.dashboard-folder {
    border: 1px solid #dadce0;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    box-shadow: none !important;
    /* Remove any shadows */
}

.dashboard-folder:hover {
    background-color: #fff;
    border-color: #dadce0 !important;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
    transform: translateY(-1px);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.dashboard-folder.border-primary {
    background-color: #e8f0fe !important;
    border-color: #dadce0 !important;
    /* Drive keeps border gray usually, or blue? Let's stick to simple selection */
}

/* Icon colors */
.dashboard-folder .folder-icon {
    color: #5f6368 !important;
    /* Gray by default */
    background-color: transparent !important;
}

.dashboard-folder.border-primary .folder-icon {
    color: #1967d2 !important;
    /* Blue on selection */
}

/* Mobile Responsiveness */
.search-form {
    width: 100%;
}

@media (min-width: 992px) {
    .search-form {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .dashboard-folder {
        margin-bottom: 0.25rem;
        /* Less margin on mobile */
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}