/* Style de base pour le Drive Cloud */
.drive-container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 24px;
}
.drive-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 1.1em;
}
.finder {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}
.finder-sidebar {
    width: 200px;
    background: #f7f7f7;
    border-right: 1px solid #e0e0e0;
    padding: 16px 0;
}
.finder-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.finder-sidebar li {
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 4px;
    transition: background 0.2s;
}
.finder-sidebar li.active, .finder-sidebar li:hover {
    background: #e0eaff;
    font-weight: bold;
}
.finder-main {
    flex: 1;
    padding: 24px;
    overflow-x: auto;
}
.file-table {
    width: 100%;
    border-collapse: collapse;
}
.file-table th, .file-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #ececec;
    text-align: left;
}
.file-table th {
    background: #f0f4fa;
    font-weight: 600;
}
