/* 
 * File Explorer Modal Styles
 */

 .file-explorer-content {
    background: rgba(22, 22, 28, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.fe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fe-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    color: #fff;
}

.fe-actions {
    display: flex;
    gap: 8px;
}

.fe-actions .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fe-actions .icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.fe-actions .icon-btn.danger:hover {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
}

.fe-file-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fe-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fe-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.fe-item:active {
    transform: scale(0.98);
}

.fe-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.fe-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fe-name {
    font-size: 15px;
    font-weight: 500;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.fe-size {
    font-size: 12px;
    color: #888;
}

.fe-footer {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: flex-end;
}

.fe-footer .btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
}

/* Custom Scrollbar */
.fe-file-list::-webkit-scrollbar {
    width: 6px;
}
.fe-file-list::-webkit-scrollbar-track {
    background: transparent;
}
.fe-file-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}
