/* Base styles for the UOH Workspace & Cloud Connector drag and drop interface */

.uoh-file-upload-container {
    width: 100%;
    margin-bottom: 20px;
    font-family: inherit;
}

.uoh-drag-drop-area {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background-color: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.uoh-drag-drop-area:hover, 
.uoh-drag-drop-area.dragover {
    border-color: #0056b3;
    background-color: #f0f7ff;
}

.uoh-upload-icon {
    color: #0056b3;
    margin-bottom: 15px;
}

.uoh-upload-text {
    color: #444;
    font-size: 16px;
    margin-bottom: 20px;
}

.uoh-upload-text strong {
    color: #0056b3;
    text-decoration: underline;
}



/* File List Styles */
.uoh-file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.uoh-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.uoh-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
}

.uoh-file-icon {
    color: #666;
}

.uoh-file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.uoh-file-size {
    color: #999;
    font-size: 12px;
}

.uoh-file-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.uoh-file-remove:hover {
    background: #fee2e2;
}
