/* File Manager Specific Styles */

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    background-color: white;
    transition: all 0.2s;
    cursor: pointer;
    margin-bottom: 2rem;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-color);
    background-color: #f0fdf4;
    /* Light green/indigo tint if preferred */
}

.file-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.file-table th {
    background-color: #f1f5f9;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
}

.file-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.file-table tr:last-child td {
    border-bottom: none;
}

.file-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #e0e7ff;
    color: var(--primary-color);
    border-radius: var(--radius-md);
    margin-right: 0.75rem;
}

.action-btn {
    padding: 0.4rem;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all 0.2s;
    border: none;
    background: none;
    cursor: pointer;
}

.action-btn:hover {
    color: var(--primary-color);
    background-color: #f1f5f9;
}

.action-btn.delete:hover {
    color: var(--danger-color);
    background-color: #fef2f2;
}