.cleaner-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.cleaner-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cleaner-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    background: #f5f5f5;
    padding: 8px 8px 0;
}

.tab-button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #e5e5e5;
    margin-right: 4px;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
}

.tab-button.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tab-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.cleaner-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    margin: 0 0 16px 0;
    font-size: 18px;
}

.cleaner-info {
    margin-bottom: 20px;
    color: #666;
}

.cl-files-container {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.cl-files-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
    padding: 8px;
    font-weight: bold;
}

.cl-files-list {
    overflow-y: auto;
    max-height: calc(100% - 40px);
}

.cl-file-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.cl-file-item:hover {
    background: #f8f8f8;
}

.delete-file-button {
    padding: 4px 8px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.delete-file-button:hover {
    background: #ff2222;
}

.cleaner-footer {
    margin-top: 20px;
    padding: 16px;
    border-top: 1px solid #eee;
    text-align: right;
}

.clean-all-button {
    padding: 8px 16px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.clean-all-button:hover {
    background: #ff2222;
}

.clean-all-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.no-files {
    padding: 20px;
    text-align: center;
    color: #666;
}

.storage-section {
    padding: 20px;
}

.storage-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.storage-content {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.storage-status {
    margin-bottom: 20px;
    font-size: 16px;
}

.storage-button {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 16px;
}

.storage-button:hover {
    background: #0056b3;
}

.storage-description {
    color: #666;
    line-height: 1.5;
}

.coming-soon {
    text-align: center;
    color: #666;
    padding: 40px;
    font-style: italic;
}

.loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error-message {
    padding: 20px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 10px;
}