.web-cloud-container {
    background-color: #f5f5f5;
    position: relative;
    height: 100%;
}

.web-cloud-toolbar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 8px 16px;
    height: 64px;
}

.web-cloud-toolbar-container {
    background-color: black;
    padding: 0px 5px;
    border-radius: 10px;
}

.web-cloud-toolbar-container button {
    margin: 0px;
}

.web-cloud-toolbar-container md-icon {
    filter: brightness(0) invert(1);
}

.web-cloud-content {
    padding: 16px;
    overflow-y: auto;
    align-content: flex-start;
}

.breadcrumb {
    font-size: 16px;
    color: #555;
    margin-left: 10px;
}

.crumb {
    cursor: pointer;
    color: #1a73e8;
    /* Google Blue */
}

.crumb:hover {
    text-decoration: underline;
}

.cloud-item {
    width: 120px;
    height: 140px;
    margin: 8px;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cloud-item:hover {
    background-color: #e8f0fe;
}

.cloud-item.selected {
    background-color: #d2e3fc;
    border: 1px solid #1a73e8;
}

.item-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon md-icon {
    width: 90px;
    height: 90px;
    font-size: 90px;
}

.folder-icon {
    color: #5f6368;
}

.file-icon {
    color: #1a73e8;
}

.img-preview {
    max-width: 90px;
    max-height: 90px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.item-name {
    font-size: 13px;
    color: #333;
    word-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Context Menu */
.context-menu {
    position: fixed;
    z-index: 1000;
    width: 200px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

.menu-item {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: -webkit-flex !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    direction: ltr !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.menu-item span {
    flex: 1;
    text-align: left !important;
    white-space: nowrap;
}

.menu-item md-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    margin-right: 12px;
    color: #5f6368;
    flex-shrink: 0;
}

.menu-item:hover {
    background-color: #f1f3f4;
}

.menu-divider {
    height: 1px;
    background-color: #ddd;
    margin: 4px 0;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}